mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-10 17:13:30 +08:00
e7af9de9ed
feat: 增加升级备份与恢复
10 lines
314 B
Go
10 lines
314 B
Go
package configs
|
|
|
|
type ServerConfig struct {
|
|
BaseDir string `mapstructure:"base_dir"`
|
|
System System `mapstructure:"system"`
|
|
Sqlite Sqlite `mapstructure:"sqlite"`
|
|
LogConfig LogConfig `mapstructure:"log"`
|
|
CORS CORS `mapstructure:"cors"`
|
|
Encrypt Encrypt `mapstructure:"encrypt"`
|
|
}
|