mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 02:07:18 +08:00
11 lines
245 B
Go
11 lines
245 B
Go
package request
|
|
|
|
type SafeUpdateSSH struct {
|
|
Port uint `json:"port" form:"port" validate:"number|min:1|max:65535"`
|
|
Status bool `json:"status" form:"status"`
|
|
}
|
|
|
|
type SafeUpdatePingStatus struct {
|
|
Status bool `json:"status" form:"status"`
|
|
}
|