1Panel/backend/configs/config.go
2023-02-13 15:58:45 +08:00

8 lines
223 B
Go

package configs
type ServerConfig struct {
BaseDir string `mapstructure:"base_dir"`
System System `mapstructure:"system"`
LogConfig LogConfig `mapstructure:"log"`
CORS CORS `mapstructure:"cors"`
}