moonpool_sim/providers/
mod.rs

1//! Provider implementations for simulation.
2//!
3//! This module provides simulation-specific implementations of the provider traits
4//! defined in moonpool-core.
5
6mod random;
7mod time;
8
9pub use random::SimRandomProvider;
10pub use time::SimTimeProvider;