Constructor. Args: channel: A grpc.Channel.
(self, channel)
| 484 | """Missing associated documentation comment in .proto file.""" |
| 485 | |
| 486 | def __init__(self, channel): |
| 487 | """Constructor. |
| 488 | |
| 489 | Args: |
| 490 | channel: A grpc.Channel. |
| 491 | """ |
| 492 | self.CreateAuthCode = channel.unary_unary( |
| 493 | '/auth.AuthCodeProvider/CreateAuthCode', |
| 494 | request_serializer=cells__auth__pb2.CreateAuthCodeRequest.SerializeToString, |
| 495 | response_deserializer=cells__auth__pb2.CreateAuthCodeResponse.FromString, |
| 496 | ) |
| 497 | |
| 498 | |
| 499 | class AuthCodeProviderServicer(object): |
nothing calls this directly
no outgoing calls
no test coverage detected