forked from mirrors/homebox
cd82fe0d89
* remove empty services * remove old factory * remove old static files * cleanup more duplicate service code * file/folder reorg
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"`
|
|
}
|