mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 09:13:49 +08:00
17 lines
484 B
Go
17 lines
484 B
Go
package request
|
|
|
|
type PanelSetting struct {
|
|
Name string `json:"name"`
|
|
Locale string `json:"locale"`
|
|
Entrance string `json:"entrance"`
|
|
WebsitePath string `json:"website_path"`
|
|
BackupPath string `json:"backup_path"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Email string `json:"email"`
|
|
Port int `json:"port"`
|
|
HTTPS bool `json:"https"`
|
|
Cert string `json:"cert"`
|
|
Key string `json:"key"`
|
|
}
|