Skip to content

Commit

Permalink
ref(chunks): Rename upload module to options
Browse files Browse the repository at this point in the history
I am planning to create a new `upload` module to contain a function which actually performs chunked uploading on generic objects. The `ChunkOptions` struct should stay in a separate module, hence moving it to the `options` module.
  • Loading branch information
szokeasaurusrex committed Dec 16, 2024
1 parent b42e559 commit d062dcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/chunks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
//!
//! See `BatchedSliceExt::batches` for more information.
mod options;
mod types;
mod upload;

pub use options::ChunkOptions;
pub use types::{Assemblable, Chunked, MissingObjectsInfo};
pub use upload::ChunkOptions;

use std::sync::Arc;
use std::time::Duration;
Expand Down
File renamed without changes.

0 comments on commit d062dcb

Please sign in to comment.