mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-07 07:04:37 +08:00
10 lines
307 B
Go
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"`
|
|
}
|