mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-21 10:18:21 -05:00
51e1aa2978
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
12 lines
310 B
Go
12 lines
310 B
Go
package config
|
|
|
|
// Reva defines all available REVA configuration.
|
|
type Reva struct {
|
|
Address string `yaml:"address" env:"REVA_GATEWAY"`
|
|
}
|
|
|
|
// TokenManager is the config for using the reva token manager
|
|
type TokenManager struct {
|
|
JWTSecret string `yaml:"jwt_secret" env:"OCIS_JWT_SECRET;GROUPS_JWT_SECRET"`
|
|
}
|