mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-28 14:59:49 -05:00
8 lines
268 B
Go
8 lines
268 B
Go
package config
|
|
|
|
// Service defines the available service configuration.
|
|
type Service struct {
|
|
Name string `yaml:"-"`
|
|
PasswordResetURI string `yaml:"password_reset_uri" env:"IDP_PASSWORD_RESET_URI" desc:"The URI where a user can reset their password."`
|
|
}
|