2024-07-19 19:04:11 +08:00
|
|
|
package configs
|
|
|
|
|
|
|
|
type System struct {
|
|
|
|
Port string `mapstructure:"port"`
|
|
|
|
Ipv6 string `mapstructure:"ipv6"`
|
|
|
|
BindAddress string `mapstructure:"bindAddress"`
|
|
|
|
SSL string `mapstructure:"ssl"`
|
2024-07-23 10:11:43 +08:00
|
|
|
DbCoreFile string `mapstructure:"db_core_file"`
|
2024-07-19 19:04:11 +08:00
|
|
|
EncryptKey string `mapstructure:"encrypt_key"`
|
|
|
|
BaseDir string `mapstructure:"base_dir"`
|
2024-08-09 18:30:39 +08:00
|
|
|
BackupDir string `mapstructure:"backup_dir"`
|
2024-07-19 19:04:11 +08:00
|
|
|
Mode string `mapstructure:"mode"`
|
|
|
|
RepoUrl string `mapstructure:"repo_url"`
|
|
|
|
Version string `mapstructure:"version"`
|
|
|
|
Username string `mapstructure:"username"`
|
|
|
|
Password string `mapstructure:"password"`
|
|
|
|
Entrance string `mapstructure:"entrance"`
|
|
|
|
IsDemo bool `mapstructure:"is_demo"`
|
|
|
|
ChangeUserInfo string `mapstructure:"change_user_info"`
|
|
|
|
}
|