2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 05:31:44 +08:00

refactor: 应用渠道机制

This commit is contained in:
耗子
2024-10-10 02:26:32 +08:00
parent 7e18d75203
commit 95f0e0d536
19 changed files with 266 additions and 150 deletions

View File

@@ -14,7 +14,7 @@ type App struct {
Description string `json:"description"`
Categories []string `json:"categories"`
Depends string `json:"depends"`
Versions []struct {
Channels []struct {
Slug string `json:"slug"`
Name string `json:"name"`
Panel string `json:"panel"`
@@ -24,8 +24,8 @@ type App struct {
Subs []struct {
Log string `json:"log"`
Version string `json:"version"`
} `json:"versions"`
} `json:"versions"`
} `json:"subs"`
} `json:"channels"`
Order int `json:"order"`
}