You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.3 KiB
26 lines
1.3 KiB
package config
|
|
|
|
type Server struct {
|
|
JWT JWT `mapstructure:"jwt" json:"jwt" yaml:"jwt"`
|
|
Zap Zap `mapstructure:"zap" json:"zap" yaml:"zap"`
|
|
Redis Redis `mapstructure:"redis" json:"redis" yaml:"redis"`
|
|
Email Email `mapstructure:"email" json:"email" yaml:"email"`
|
|
Casbin Casbin `mapstructure:"casbin" json:"casbin" yaml:"casbin"`
|
|
System System `mapstructure:"system" json:"system" yaml:"system"`
|
|
Captcha Captcha `mapstructure:"captcha" json:"captcha" yaml:"captcha"`
|
|
// auto
|
|
AutoCode Autocode `mapstructure:"autoCode" json:"autoCode" yaml:"autoCode"`
|
|
// gorm
|
|
Mysql Mysql `mapstructure:"mysql" json:"mysql" yaml:"mysql"`
|
|
Pgsql Pgsql `mapstructure:"pgsql" json:"pgsql" yaml:"pgsql"`
|
|
DBList []DB `mapstructure:"db-list" json:"db-list" yaml:"db-list"`
|
|
// oss
|
|
Local Local `mapstructure:"local" json:"local" yaml:"local"`
|
|
Qiniu Qiniu `mapstructure:"qiniu" json:"qiniu" yaml:"qiniu"`
|
|
AliyunOSS AliyunOSS `mapstructure:"aliyun-oss" json:"aliyunOSS" yaml:"aliyun-oss"`
|
|
HuaWeiObs HuaWeiObs `mapstructure:"hua-wei-obs" json:"huaWeiObs" yaml:"hua-wei-obs"`
|
|
TencentCOS TencentCOS `mapstructure:"tencent-cos" json:"tencentCOS" yaml:"tencent-cos"`
|
|
|
|
Excel Excel `mapstructure:"excel" json:"excel" yaml:"excel"`
|
|
Timer Timer `mapstructure:"timer" json:"timer" yaml:"timer"`
|
|
}
|