1Panel/backend/configs/config.go

10 lines
269 B
Go
Raw Normal View History

2022-08-16 15:30:23 +00:00
package configs
type ServerConfig struct {
BaseDir string `mapstructure:"base_dir"`
2022-08-16 15:30:23 +00:00
System System `mapstructure:"system"`
LogConfig LogConfig `mapstructure:"log"`
CORS CORS `mapstructure:"cors"`
Encrypt Encrypt `mapstructure:"encrypt"`
}