Describe the solution you'd like
I would like to switch over to connect from grpc json transcoding, but prefer to hide grpc implementation details that heavily leak when you have your consumers call /package.Service/Method.
It would be great if connect supported some subset of google.api annotations or maybe come up with its own protobuf extension (the latter would be even better).
service Messaging {
rpc GetMessage(GetMessageRequest) returns (Message) {
option (google.api.http) = {
get: "/v1/{name=messages/*}"
};
}
}
Describe the solution you'd like
I would like to switch over to connect from grpc json transcoding, but prefer to hide grpc implementation details that heavily leak when you have your consumers call
/package.Service/Method.It would be great if connect supported some subset of
google.apiannotations or maybe come up with its own protobuf extension (the latter would be even better).