config.go 382 B

123456789
  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. FTP FTP `mapstructure:"ftp" json:"ftp" yaml:"ftp"`
  8. }