1Panel/backend/configs/system.go
ssongliu e7af9de9ed feat: 增加从快照恢复功能
feat: 增加升级备份与恢复
2023-01-30 21:11:12 +08:00

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"`
}