Skip to main content

argus_storage/
lib.rs

1pub mod file;
2pub mod s3;
3pub mod storage_trait;
4
5pub use file::FileStorage;
6pub use s3::S3Storage;
7pub use storage_trait::{url_to_fragment, NoopStorage, Storage};
8
9pub fn init_storage() {}