2022-08-16 15:30:23 +00:00
|
|
|
package configs
|
|
|
|
|
|
|
|
type ServerConfig struct {
|
2023-01-09 14:55:10 +00:00
|
|
|
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"`
|
|
|
|
}
|