1Panel/backend/configs/system.go

10 lines
241 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
package configs
type System struct {
2022-10-12 18:57:22 +08:00
Port int `mapstructure:"port"`
DbType string `mapstructure:"db_type"`
Level string `mapstructure:"level"`
DataDir string `mapstructure:"data_dir"`
AppOss string `mapstructure:"app_oss"`
2022-08-16 23:30:23 +08:00
}