Skip to main content

dash_platform_queries/
mock.rs

1//! Mocking support.
2//!
3//! The `dash_platform_macros::Mockable` derive expands to an impl of
4//! `crate::mock::Mockable`, so every crate that derives it must expose the
5//! trait at this path. The trait itself lives in `dapi-grpc` and is defined
6//! even when mocks are disabled — serialization then just returns `None`.
7pub use dapi_grpc::mock::Mockable;