mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
11 lines
176 B
Go
11 lines
176 B
Go
package config
|
|
|
|
const (
|
|
LogFormatJSON = "json"
|
|
LogFormatText = "text"
|
|
)
|
|
|
|
type LoggerConf struct {
|
|
Level string `conf:"default:info"`
|
|
Format string `conf:"default:text"`
|
|
}
|