service GreeterService {
/* Simply echoes the name prefixed with Hi */
rpc SayHello (HelloRequest) returns (HelloResponse);
}
The stubs generated by grpc-java contain this documentation as javadocs. However, the coroutine stub generated by kroto plus is missing this documentation.
We can document our RPCs in the proto files like
The stubs generated by grpc-java contain this documentation as javadocs. However, the coroutine stub generated by kroto plus is missing this documentation.