config.go 681 B

1234567891011121314151617181920
  1. package config
  2. type Server struct {
  3. JWT JWT `mapstructure:"jwt" json:"jwt" yaml:"jwt"`
  4. Zap Zap `mapstructure:"zap" json:"zap" yaml:"zap"`
  5. Redis Redis `mapstructure:"redis" json:"redis" yaml:"redis"`
  6. System System `mapstructure:"system" json:"system" yaml:"system"`
  7. // DB
  8. Oracle Oracle `mapstructure:"oracle" json:"oracle" yaml:"oracle"`
  9. // MQ
  10. Rabbitmq Rabbitmq `mapstructure:"rabbitmq" json:"rabbitmq" yaml:"rabbitmq"`
  11. // OSS
  12. Local Local `mapstructure:"local" json:"local" yaml:"local"`
  13. // 跨域配置
  14. Cors CORS `mapstructure:"cors" json:"cors" yaml:"cors"`
  15. // 爱签开放平台配置
  16. Asign Asign `mapstructure:"asign" json:"asign" yaml:"asign"`
  17. }