1Panel/backend/configs/config.go
2022-08-04 17:21:44 +08:00

10 lines
307 B
Go

package configs
type ServerConfig struct {
Sqlite Sqlite `mapstructure:"sqlite"`
Mysql Mysql `mapstructure:"mysql"`
System System `mapstructure:"system"`
LogConfig LogConfig `mapstructure:"log"`
JWT JWT `mapstructure:"jwt"`
CORS CORS `mapstructure:"cors"`
}