config.go 320 B

12345678
  1. package config
  2. type Server struct {
  3. Zap Zap `mapstructure:"zap" json:"zap" yaml:"zap"`
  4. Oracle Oracle `mapstructure:"oracle" json:"oracle" yaml:"oracle"`
  5. Rabbitmq Rabbitmq `mapstructure:"rabbitmq" json:"rabbitmq" yaml:"rabbitmq"`
  6. System System `mapstructure:"system" json:"system" yaml:"system"`
  7. }