file-storage 0.5.0

This library aids in accessing file-like storage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::module_inception)]

pub use error::*;
pub use op::*;
pub use path::*;
pub(crate) use system::*;

mod error;
mod op;
mod path;
pub(crate) mod system;