maxwell_utils/lib.rs
1pub mod arbiter_pool;
2pub mod connection;
3
4pub mod prelude {
5 //! The `maxwell-utils` prelude.
6 //!
7 //! The purpose of this module is to alleviate imports of many common maxwell-utils
8 //! types by adding a glob import to the top of maxwell-utils heavy modules:
9 //!
10 //! ```
11 //! use maxwell_utils::prelude::*;
12 //! ```
13
14 pub use crate::arbiter_pool::*;
15 pub use crate::connection::*;
16}