Files
opencloud/extensions/webdav/pkg/config/debug.go
Christian Richter afea0b4304 refactor webdav
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-04-13 17:04:38 +02:00

10 lines
310 B
Go

package config
// Debug defines the available debug configuration.
type Debug struct {
Addr string `yaml:"addr" env:"WEBDAV_DEBUG_ADDR"`
Token string `yaml:"token" env:"WEBDAV_DEBUG_TOKEN"`
Pprof bool `yaml:"pprof" env:"WEBDAV_DEBUG_PPROF"`
Zpages bool `yaml:"zpages" env:"WEBDAV_DEBUG_ZPAGES"`
}