mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 16:29:17 +08:00
10 lines
269 B
Go
10 lines
269 B
Go
package configs
|
|
|
|
type ServerConfig struct {
|
|
BaseDir string `mapstructure:"base_dir"`
|
|
System System `mapstructure:"system"`
|
|
LogConfig LogConfig `mapstructure:"log"`
|
|
CORS CORS `mapstructure:"cors"`
|
|
Encrypt Encrypt `mapstructure:"encrypt"`
|
|
}
|