mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
16 lines
435 B
Go
16 lines
435 B
Go
package request
|
|
|
|
type App struct {
|
|
Slug string `json:"slug" form:"slug" validate:"required,not_exists=apps slug"`
|
|
Channel string `json:"channel" form:"channel" validate:"required"`
|
|
}
|
|
|
|
type AppSlug struct {
|
|
Slug string `json:"slug" form:"slug" validate:"required,exists=apps slug"`
|
|
}
|
|
|
|
type AppUpdateShow struct {
|
|
Slug string `json:"slug" form:"slug" validate:"required,exists=apps slug"`
|
|
Show bool `json:"show" form:"show"`
|
|
}
|