1 2 3 4 5 6 7 8 9 10
//! Storage functionality pub mod error; pub mod manager; pub mod traits; // Re-export types for convenience pub use error::StorageError; pub use manager::{FileStorage, StorageConfig}; pub use traits::StorageManager;