Skip to content

Instantly share code, notes, and snippets.

@harunpeksen
Created February 25, 2022 18:19
Show Gist options
  • Save harunpeksen/e27f1430053b115c9f14bdc4c93d84cd to your computer and use it in GitHub Desktop.
Save harunpeksen/e27f1430053b115c9f14bdc4c93d84cd to your computer and use it in GitHub Desktop.
service HelloService {
rpc SayHello (HelloRequest) returns (HelloResponse);
rpc ClientStreamHello (stream HelloRequest) returns (HelloResponse);
rpc ServerStreamHello (HelloRequest) returns (stream HelloResponse);
rpc BidirectionalStreamHello (stream HelloRequest) returns (stream HelloResponse);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment