1Panel/backend/configs/system.go

10 lines
241 B
Go
Raw Normal View History

2022-08-16 15:30:23 +00:00
package configs
type System struct {
2022-10-12 10:57:22 +00: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 15:30:23 +00:00
}