mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:11:18 -06:00
10 lines
322 B
Go
10 lines
322 B
Go
package config
|
|
|
|
// Debug defines the available debug configuration.
|
|
type Debug struct {
|
|
Addr string `ocisConfig:"addr" env:"IDP_DEBUG_ADDR"`
|
|
Token string `ocisConfig:"token" env:"IDP_DEBUG_TOKEN"`
|
|
Pprof bool `ocisConfig:"pprof" env:"IDP_DEBUG_PPROF"`
|
|
Zpages bool `ocisConfig:"zpages" env:"IDP_DEBUG_ZPAGES"`
|
|
}
|