aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/downloader/mod.rs')
-rw-r--r--crates/shirabe/src/downloader/mod.rs47
1 files changed, 0 insertions, 47 deletions
diff --git a/crates/shirabe/src/downloader/mod.rs b/crates/shirabe/src/downloader/mod.rs
deleted file mode 100644
index 4f7641b..0000000
--- a/crates/shirabe/src/downloader/mod.rs
+++ /dev/null
@@ -1,47 +0,0 @@
-pub mod archive_downloader;
-pub mod change_report_interface;
-pub mod download_manager;
-pub mod downloader_interface;
-pub mod dvcs_downloader_interface;
-pub mod file_downloader;
-pub mod filesystem_exception;
-pub mod fossil_downloader;
-pub mod git_downloader;
-pub mod gzip_downloader;
-pub mod hg_downloader;
-pub mod max_file_size_exceeded_exception;
-pub mod path_downloader;
-pub mod perforce_downloader;
-pub mod phar_downloader;
-pub mod rar_downloader;
-pub mod svn_downloader;
-pub mod tar_downloader;
-pub mod transport_exception;
-pub mod vcs_capable_downloader_interface;
-pub mod vcs_downloader;
-pub mod xz_downloader;
-pub mod zip_downloader;
-
-pub use archive_downloader::*;
-pub use change_report_interface::*;
-pub use download_manager::*;
-pub use downloader_interface::*;
-pub use dvcs_downloader_interface::*;
-pub use file_downloader::*;
-pub use filesystem_exception::*;
-pub use fossil_downloader::*;
-pub use git_downloader::*;
-pub use gzip_downloader::*;
-pub use hg_downloader::*;
-pub use max_file_size_exceeded_exception::*;
-pub use path_downloader::*;
-pub use perforce_downloader::*;
-pub use phar_downloader::*;
-pub use rar_downloader::*;
-pub use svn_downloader::*;
-pub use tar_downloader::*;
-pub use transport_exception::*;
-pub use vcs_capable_downloader_interface::*;
-pub use vcs_downloader::*;
-pub use xz_downloader::*;
-pub use zip_downloader::*;