not-decky-store/src/storage/mod.rs

10 lines
207 B
Rust
Raw Normal View History

mod cache;
mod filesystem;
mod interface;
mod proxy;
pub use cache::CachedStorage;
pub use filesystem::FileStorage;
pub use interface::{IStorage, EmptyStorage, IStorageWrap};
pub use proxy::ProxiedStorage;