Skip to content

Commit

Permalink
chore(cli): make FilesUploadSummary public
Browse files Browse the repository at this point in the history
  • Loading branch information
happybeing authored and RolandSherwin committed Apr 10, 2024
1 parent 40b11f9 commit c3f7246
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sn_cli/src/files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mod upload;
pub use chunk_manager::ChunkManager;
pub use download::{download_file, download_files};
pub use estimate::Estimator;
pub use files_uploader::{FilesUploadStatusNotifier, FilesUploader};
pub use files_uploader::{FilesUploadStatusNotifier, FilesUploadSummary, FilesUploader};
pub use upload::{UploadedFile, UPLOADED_FILES};

use color_eyre::Result;
Expand Down
2 changes: 1 addition & 1 deletion sn_cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ mod files;
pub use acc_packet::AccountPacket;
pub use files::{
download_file, download_files, ChunkManager, Estimator, FilesUploadStatusNotifier,
FilesUploader, UploadedFile, UPLOADED_FILES,
FilesUploadSummary, FilesUploader, UploadedFile, UPLOADED_FILES,
};

0 comments on commit c3f7246

Please sign in to comment.