2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 12:40:25 +08:00

fix: 修复报错Slug不存在

This commit is contained in:
耗子
2024-10-17 18:02:48 +08:00
parent f2c3569447
commit 2112e86329

View File

@@ -6,7 +6,7 @@ type App struct {
}
type AppSlug struct {
Slug string `json:"slug" form:"slug" validate:"required,exists=apps slug"`
Slug string `json:"slug" form:"slug" validate:"required"`
}
type AppUpdateShow struct {