123456789101112131415161718192021 |
- package config
- type Logger struct {
- Level string `yaml:"level"`
- Filename string `yaml:"filename"`
- MaxSize int `yaml:"maxSize"`
- MaxBackups int `yaml:"maxBackups"`
- MaxAge int `yaml:"maxAge"`
- Compress bool `yaml:"compress"`
- Console bool `yaml:"console"`
- ToMq bool `yaml:"toMq"`
- MqSetting MqSetting `yaml:"mqSetting"`
- }
- type MqSetting struct {
- Host string `yaml:"host"`
- Port int `yaml:"port"`
- Username string `yaml:"username"`
- Password string `yaml:"password"`
- }
|