1 2 3 4 5 6 7 8 9 10 11 12
#![deny(unused_must_use)] pub mod adapters; pub mod block_producer; pub mod config; pub mod ports; pub use block_producer::Producer; pub use config::Config; #[cfg(any(test, feature = "test-helpers"))] pub mod mocks;