logger.go 131 B

12345678
  1. package config
  2. type Logger struct {
  3. Path string
  4. Level string
  5. ReportCaller bool `mapstructure:"report-caller"`
  6. }