mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
4710de33a4
This adds to the ongoing effort to remove all pointers to structs in the configuration without breaking backwards compatibility.
11 lines
386 B
Go
11 lines
386 B
Go
package schema
|
|
|
|
// DuoAPIConfiguration represents the configuration related to Duo API.
|
|
type DuoAPIConfiguration struct {
|
|
Disable bool `koanf:"disable"`
|
|
Hostname string `koanf:"hostname"`
|
|
IntegrationKey string `koanf:"integration_key"`
|
|
SecretKey string `koanf:"secret_key"`
|
|
EnableSelfEnrollment bool `koanf:"enable_self_enrollment"`
|
|
}
|