logrus.go 225 B

1234567
  1. package config
  2. type Logrus struct {
  3. Path string `mapstructure:"path" json:"path" yaml:"path"`
  4. Name string `mapstructure:"name" json:"name" yaml:"name"`
  5. Level string `mapstructure:"level" json:"level" yaml:"level"`
  6. }