1 2 3 4 5 6 7 8 9 10 11 12
//! Storage backend implementations pub mod local; #[cfg(feature = "aws-s3")] pub mod s3; // Re-export types from traits pub use crate::files::{ error::StorageError, traits::{StorageBackend, StorageMetadata, StorageResult}, };