Created
February 25, 2022 18:19
-
-
Save harunpeksen/e27f1430053b115c9f14bdc4c93d84cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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