loggerConfig.go 274 B

12345678910
  1. package config
  2. type LoggerConfig struct {
  3. FilePath string `yaml:"filePath"`
  4. FileType string `yaml:"fileType"`
  5. FileFormat string `yaml:"fileFormat"`
  6. LogType string `yaml:"logType"`
  7. Level string `yaml:"level"`
  8. MaxSaveDays int `yaml:"maxSaveDays"`
  9. }