mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 19:21:19 +08:00
11 lines
354 B
Go
11 lines
354 B
Go
package configs
|
|
|
|
type ServerConfig struct {
|
|
Sqlite Sqlite `mapstructure:"sqlite"`
|
|
System System `mapstructure:"system"`
|
|
LogConfig LogConfig `mapstructure:"log"`
|
|
CORS CORS `mapstructure:"cors"`
|
|
Encrypt Encrypt `mapstructure:"encrypt"`
|
|
Csrf Csrf `mapstructure:"csrf"`
|
|
Cache Cache `mapstructure:"cache"`
|
|
}
|