mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:37:17 +08:00
10 lines
222 B
Go
10 lines
222 B
Go
package phpmyadmin
|
|
|
|
type UpdateConfig struct {
|
|
Config string `form:"config" json:"config" validate:"required"`
|
|
}
|
|
|
|
type UpdatePort struct {
|
|
Port uint `form:"port" json:"port" validate:"required,number,gte=1,lte=65535"`
|
|
}
|