(audience string, additionalScopes ...string)
| 42 | // AuthorizationCodeProvider abstracts getting an authorization code |
| 43 | type DeviceCodeProvider interface { |
| 44 | GetCode(audience string, additionalScopes ...string) (*DeviceCodeResult, error) |
| 45 | } |
| 46 | |
| 47 | // DeviceTokenExchanger abstracts exchanging for tokens |
no outgoing calls
no test coverage detected