| 1234567891011121314151617181920 |
- 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"`
- System System `mapstructure:"system" json:"system" yaml:"system"`
- // DB
- Oracle Oracle `mapstructure:"oracle" json:"oracle" yaml:"oracle"`
- // MQ
- Rabbitmq Rabbitmq `mapstructure:"rabbitmq" json:"rabbitmq" yaml:"rabbitmq"`
- // OSS
- Local Local `mapstructure:"local" json:"local" yaml:"local"`
- // 跨域配置
- Cors CORS `mapstructure:"cors" json:"cors" yaml:"cors"`
- // 爱签开放平台配置
- Asign Asign `mapstructure:"asign" json:"asign" yaml:"asign"`
- }
|