1 2 3 4 5 6 7 8 9 10 11
pub mod error; pub mod flopper; pub mod macros; pub mod result; pub mod prelude { pub use crate::error::Errors; pub use crate::flop; pub use crate::flopper::{gen_type::GenType, params::Params, Flopper}; pub use crate::result::Result; }