diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:53:53 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 02:53:53 +0900 |
| commit | a1c7e6908a26e10f6e1f23a51721664b5e2d838d (patch) | |
| tree | c575c76f1b43359ed74913da4c6a2636643f1ba0 /crates/shirabe/src/downloader/mod.rs | |
| parent | 7f606f36fef0c0467c3c0db3d0da33af486dae8a (diff) | |
| download | php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.gz php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.zst php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.zip | |
chore(style): cargo fmt
Diffstat (limited to 'crates/shirabe/src/downloader/mod.rs')
| -rw-r--r-- | crates/shirabe/src/downloader/mod.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/shirabe/src/downloader/mod.rs b/crates/shirabe/src/downloader/mod.rs new file mode 100644 index 0000000..391ae23 --- /dev/null +++ b/crates/shirabe/src/downloader/mod.rs @@ -0,0 +1,23 @@ +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; |
