| 9 | ) |
| 10 | |
| 11 | type OAuthServiceImpl interface { |
| 12 | Name() string |
| 13 | ID() string |
| 14 | NewRandom() string |
| 15 | GetAuthURL(state string, verifier string) string |
| 16 | GetToken(code string, verifier string) (*oauth2.Token, error) |
| 17 | GetUserinfo(token *oauth2.Token) (config.Claims, error) |
| 18 | } |
| 19 | |
| 20 | type OAuthBrokerService struct { |
| 21 | services map[string]OAuthServiceImpl |
no outgoing calls
no test coverage detected