1Panel/backend/configs/config.go

12 lines
354 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
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"`
}