mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:30:13 +08:00
23 lines
394 B
Go
23 lines
394 B
Go
package toolbox
|
|
|
|
type DNS struct {
|
|
DNS1 string `form:"dns1" json:"dns1"`
|
|
DNS2 string `form:"dns2" json:"dns2"`
|
|
}
|
|
|
|
type SWAP struct {
|
|
Size int64 `form:"size" json:"size"`
|
|
}
|
|
|
|
type Timezone struct {
|
|
Timezone string `form:"timezone" json:"timezone"`
|
|
}
|
|
|
|
type Hosts struct {
|
|
Hosts string `form:"hosts" json:"hosts"`
|
|
}
|
|
|
|
type Password struct {
|
|
Password string `form:"password" json:"password"`
|
|
}
|