marcoferrer / kroto-plus

gRPC Kotlin Coroutines, Protobuf DSL, Scripting for Protoc
Apache License 2.0
493 stars 28 forks source link

Forward documentation for stubs #85

Closed metarag closed 4 years ago

metarag commented 4 years ago

We can document our RPCs in the proto files like

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.

marcoferrer commented 4 years ago

This should be an easy fix. Thanks for bringing it up! I'll make sure to get into the upcoming release.