homebox/backend/internal/sys/config/conf_logger.go
Hayden cd82fe0d89
refactor: remove empty services (#116)
* remove empty services

* remove old factory

* remove old static files

* cleanup more duplicate service code

* file/folder reorg
2022-10-29 20:05:38 -08:00

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"`
}