Created
July 3, 2021 06:56
-
-
Save ankeetmaini/f872a045c6bff5ee21f78cd6d90c25e4 to your computer and use it in GitHub Desktop.
Revisions
-
ankeetmaini created this gist
Jul 3, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ message ChatRequest { string message = 1; } message ChatResponse { string reply = 1; } service DemoService { rpc Sum(SumRequest) returns (SumResponse); rpc Chat(stream ChatRequest) returns (stream ChatResponse); }