| 21 | ) |
| 22 | |
| 23 | type genericOauthClient struct { |
| 24 | ClientID string |
| 25 | ClientSecret string |
| 26 | AuthLocation string |
| 27 | ExchangeLocation string |
| 28 | InspectLocation string |
| 29 | CallbackLocation string |
| 30 | Scope string |
| 31 | MapUserID string |
| 32 | MapUsername string |
| 33 | MapDisplayName string |
| 34 | MapEmail string |
| 35 | HttpClient HttpClient |
| 36 | } |
| 37 | |
| 38 | var _ oauthClient = genericOauthClient{} |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected