mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9 lines
280 B
Go
9 lines
280 B
Go
package schema
|
|
|
|
// DuoAPIConfiguration represents the configuration related to Duo API.
|
|
type DuoAPIConfiguration struct {
|
|
Hostname string `mapstructure:"hostname"`
|
|
IntegrationKey string `mapstructure:"integration_key"`
|
|
SecretKey string `mapstructure:"secret_key"`
|
|
}
|