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