10 lines
339 B
Go
10 lines
339 B
Go
package schema
|
|
|
|
// DuoAPIConfiguration represents the configuration related to Duo API.
|
|
type DuoAPIConfiguration struct {
|
|
Hostname string `koanf:"hostname"`
|
|
EnableSelfEnrollment bool `koanf:"enable_self_enrollment"`
|
|
IntegrationKey string `koanf:"integration_key"`
|
|
SecretKey string `koanf:"secret_key"`
|
|
}
|