1 2 3 4 5 6 7 8
mod factory; pub mod memory; #[cfg(feature = "storage-mongodb")] pub mod mongodb; #[cfg(feature = "storage-postgres")] pub mod postgres; pub use factory::new;