8 lines
131 B
Go
8 lines
131 B
Go
package config
|
|
|
|
type Logger struct {
|
|
Path string
|
|
Level string
|
|
ReportCaller bool `mapstructure:"report-caller"`
|
|
}
|