mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-30 23:49:10 +08:00
10 lines
241 B
Go
10 lines
241 B
Go
package configs
|
|
|
|
type System struct {
|
|
Port int `mapstructure:"port"`
|
|
DbType string `mapstructure:"db_type"`
|
|
Level string `mapstructure:"level"`
|
|
DataDir string `mapstructure:"data_dir"`
|
|
AppOss string `mapstructure:"app_oss"`
|
|
}
|