mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 21:00:30 -06:00
10 lines
310 B
Go
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"`
|
|
}
|