mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
12 lines
354 B
Go
12 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"`
|
||
|
}
|