mirror of
https://github.com/owncloud/ocis
synced 2026-04-26 17:55:24 +02:00
12 lines
307 B
Go
12 lines
307 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;OCS_JWT_SECRET"`
|
|
}
|