mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
7 lines
164 B
Go
7 lines
164 B
Go
package config
|
|
|
|
type loggingConfig struct {
|
|
Enabled bool `mapstructure:"enabled"`
|
|
Level string `mapstructure:"level"`
|
|
Path string `mapstructure:"path"`
|
|
}
|