| 30 | |
| 31 | |
| 32 | class PasswordCredentialsCodeProvider(cells_auth_pb2_grpc.PasswordCredentialsCodeServicer): |
| 33 | def PasswordCredentialsCode(self, request, context): |
| 34 | print(request) |
| 35 | |
| 36 | context.set_code(grpc.StatusCode.UNIMPLEMENTED) |
| 37 | context.set_details('Method not implemented!') |
| 38 | |
| 39 | class PasswordCredentialsTokenProvider(cells_auth_pb2_grpc.PasswordCredentialsTokenServicer): |
| 40 | def PasswordCredentialsToken(self, request, context): |