mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 14:57:16 +08:00
13 lines
344 B
Go
13 lines
344 B
Go
package responses
|
|
|
|
type Settings struct {
|
|
Name string `json:"name"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Email string `json:"email"`
|
|
Port string `json:"port"`
|
|
Entrance string `json:"entrance"`
|
|
WebsitePath string `json:"website_path"`
|
|
BackupPath string `json:"backup_path"`
|
|
}
|