mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-24 02:59:16 +08:00
e7af9de9ed
feat: 增加升级备份与恢复
11 lines
281 B
Go
11 lines
281 B
Go
package configs
|
|
|
|
type System struct {
|
|
Port int `mapstructure:"port"`
|
|
DbType string `mapstructure:"db_type"`
|
|
DataDir string `mapstructure:"data_dir"`
|
|
Cache string `mapstructure:"cache"`
|
|
Backup string `mapstructure:"backup"`
|
|
AppOss string `mapstructure:"app_oss"`
|
|
}
|