2024-09-26 09:06:17 +00:00
|
|
|
package auth
|
2024-09-12 17:39:24 +00:00
|
|
|
|
2024-09-13 09:05:36 +00:00
|
|
|
type ClientConfig struct {
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
RedirectURL string
|
|
|
|
Scope []string
|
|
|
|
}
|
|
|
|
|
2024-09-12 17:39:24 +00:00
|
|
|
type AuthConfig struct {
|
|
|
|
TokenEndpoint string `json:"token_endpoint"`
|
|
|
|
UserinfoEndpoint string `json:"userinfo_endpoint"`
|
|
|
|
AuthorizationEndpoint string `json:"authorization_endpoint"`
|
|
|
|
}
|