rskit-storage 0.2.0-alpha.3

File I/O, local storage, temp files, MIME detection, and storage backend traits
Documentation
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;