7 lines
110 B
Go
7 lines
110 B
Go
package logger
|
|
|
|
// Config represents logging configuration.
|
|
type Config struct {
|
|
Debug bool `yaml:"debug"`
|
|
}
|