dive/runtime/config/logging.go
2021-02-15 13:13:08 -05:00

7 lines
164 B
Go

package config
type loggingConfig struct {
Enabled bool `mapstructure:"enabled"`
Level string `mapstructure:"level"`
Path string `mapstructure:"path"`
}