1 2 3 4 5 6 7 8 9 10 11
//! Local filesystem storage backend. mod config; mod path; mod store; #[cfg(test)] mod tests; pub use config::LocalStoreConfig; pub use store::LocalStore;