alun-fs 0.1.1

Alun file system abstraction: local file storage and multi-backend support (MinIO/S3)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod backend;
mod local;
mod plugin;
pub mod registry;
pub mod types;

#[cfg(feature = "minio")]
pub mod minio;

pub use backend::StorageBackend;
pub use local::LocalFs;
pub use plugin::FsPlugin;

pub use plugin::FileMeta;
pub use plugin::StoreResult;

// Backward compatibility: re-export types from plugin
// FsBackend removed; use StorageBackend trait + BackendRegistry for multi-backend support