(self, request, context)
| 20 | |
| 21 | class RefreshProvider(cells_auth_pb2_grpc.AuthTokenRefresherServicer): |
| 22 | def Refresh(self, request, context): |
| 23 | print("Refreshing") |
| 24 | return cells_auth_pb2.RefreshTokenResponse( |
| 25 | AccessToken="thisisanaccesstoken", |
| 26 | IDToken="thisisanidtoken", |
| 27 | RefreshToken="thisisarefreshtoken", |
| 28 | Expiry=1000, |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | class PasswordCredentialsCodeProvider(cells_auth_pb2_grpc.PasswordCredentialsCodeServicer): |
nothing calls this directly
no outgoing calls
no test coverage detected