2022-08-16 23:30:23 +08:00
|
|
|
package configs
|
|
|
|
|
|
|
|
type ServerConfig struct {
|
2023-01-09 22:55:10 +08:00
|
|
|
BaseDir string `mapstructure:"base_dir"`
|
2022-08-16 23:30:23 +08:00
|
|
|
System System `mapstructure:"system"`
|
|
|
|
LogConfig LogConfig `mapstructure:"log"`
|
|
|
|
CORS CORS `mapstructure:"cors"`
|
|
|
|
}
|