diff options
| author | 2026-04-02 11:27:09 +0800 | |
|---|---|---|
| committer | 2026-04-02 11:27:09 +0800 | |
| commit | e5f94912615e69c32c353fd6a63790e9b16685e4 (patch) | |
| tree | dc1a8a0f757e4b4829bbc08c401ac9016f9b52b3 /src-tauri/src/core/modpack/mod.rs | |
| parent | 0f44b957f0e4bd76146c95ef5c8b75cd61b457c1 (diff) | |
| download | DropOut-e5f94912615e69c32c353fd6a63790e9b16685e4.tar.gz DropOut-e5f94912615e69c32c353fd6a63790e9b16685e4.zip | |
refactor(modpack): split modpack module and extract curseforge api (#127)
Co-authored-by: wsrsq <wsrsq001@163.com>
Co-authored-by: 简律纯 <i@jyunko.cn>
Co-authored-by: HsiangNianian <44714368+HsiangNianian@users.noreply.github.com>
Diffstat (limited to 'src-tauri/src/core/modpack/mod.rs')
| -rw-r--r-- | src-tauri/src/core/modpack/mod.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src-tauri/src/core/modpack/mod.rs b/src-tauri/src/core/modpack/mod.rs new file mode 100644 index 0000000..6e7f744 --- /dev/null +++ b/src-tauri/src/core/modpack/mod.rs @@ -0,0 +1,11 @@ +#![allow(dead_code)] + +pub mod api; +pub(crate) mod curseforge; + +mod archive; +mod extractor; +mod formats; +mod parser; +mod resolver; +mod types; |