Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

pub mod factory;
pub mod local;
pub mod multipart;
pub mod retry;
pub mod url;

Expand All @@ -39,6 +40,9 @@ pub mod oss;

pub use factory::{StorageConfig, StorageFactory};
pub use local::LocalStorage;
pub use multipart::{
MultipartConfig, MultipartStats, MultipartUploader, ProgressCallback, upload_multipart,
};
pub use retry::{RetryConfig, RetryingStorage, retry_with_backoff};
pub use url::StorageUrl;

Expand Down
Loading
Loading