mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 03:09:33 -06:00
10 lines
342 B
Go
10 lines
342 B
Go
package config
|
|
|
|
// Debug defines the available debug configuration.
|
|
type Debug struct {
|
|
Addr string `yaml:"addr" env:"GRAPH_EXPLORER_DEBUG_ADDR"`
|
|
Token string `yaml:"token" env:"GRAPH_EXPLORER_DEBUG_TOKEN"`
|
|
Pprof bool `yaml:"pprof" env:"GRAPH_EXPLORER_DEBUG_PPROF"`
|
|
Zpages bool `yaml:"zpages" env:"GRAPH_EXPLORER_DEBUG_ZPAGES"`
|
|
}
|