homebox/backend/internal/config/conf_logger.go
2022-09-14 09:35:23 -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"`
}