aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-28 17:45:06 +0900
committernsfisis <nsfisis@gmail.com>2026-06-28 17:45:26 +0900
commit53f1fb395f33e0fb8db9aebd09ea9082f650f9f1 (patch)
treef9e8bf0e9d4b1e98cce383574fb6a13b684fff08 /crates/shirabe/src/downloader.rs
parent212f5cd75b1403ee75ffa44d7ebdb181174340c0 (diff)
downloadphp-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.tar.gz
php-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.tar.zst
php-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.zip
refactor: add linter
Diffstat (limited to 'crates/shirabe/src/downloader.rs')
-rw-r--r--crates/shirabe/src/downloader.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/crates/shirabe/src/downloader.rs b/crates/shirabe/src/downloader.rs
new file mode 100644
index 0000000..4f7641b
--- /dev/null
+++ b/crates/shirabe/src/downloader.rs
@@ -0,0 +1,47 @@
+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::*;