mirror of
https://github.com/lukaszraczylo/traefikoidc.git
synced 2026-06-05 22:44:17 +00:00
16 lines
458 B
Go
16 lines
458 B
Go
package traefikoidc
|
|
|
|
type Config struct {
|
|
ProviderURL string `json:"providerURL"`
|
|
CallbackURL string `json:"callbackURL"`
|
|
ClientID string `json:"clientID"`
|
|
ClientSecret string `json:"clientSecret"`
|
|
Scopes []string `json:"scopes"`
|
|
LogLevel string `json:"logLevel"`
|
|
SessionEncryptionKey string `json:"sessionEncryptionKey"`
|
|
}
|
|
|
|
func CreateConfig() *Config {
|
|
return &Config{}
|
|
}
|