Files
opencloud/extensions/search/pkg/config/debug.go
Jörn Friedrich Dreyer 37f64eb0e8 Merge branch 'master' into search
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2022-04-14 11:56:26 +00:00

10 lines
334 B
Go

package config
// Debug defines the available debug configuration.
type Debug struct {
Addr string `ocisConfig:"addr" env:"SEARCH_DEBUG_ADDR"`
Token string `ocisConfig:"token" env:"SEARCH_DEBUG_TOKEN"`
Pprof bool `ocisConfig:"pprof" env:"SEARCH_DEBUG_PPROF"`
Zpages bool `ocisConfig:"zpages" env:"SEARCH_DEBUG_ZPAGES"`
}