feat(launcher): implement modpack manifest API endpoint

This commit is contained in:
2025-06-18 13:16:57 +03:00
parent ca182d6d6f
commit a157fc1cc3
4 changed files with 84 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
package models
// ManifestEntry представляет один файл в манифесте модпака.
type ManifestEntry struct {
Path string `json:"path"`
Hash string `json:"hash"`
Size int64 `json:"size"`
}