Last active
July 28, 2021 12:13
-
-
Save shilomagen/65379ca76e369801145f954b25460099 to your computer and use it in GitHub Desktop.
Revisions
-
shilomagen revised this gist
Jul 28, 2021 . 1 changed file with 1 addition and 0 deletions.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 @@ -1,3 +1,4 @@ service NewService { rpc DoSomething (DoSomethingRequest) returns (DoSomethingResponse) { } -
shilomagen revised this gist
Jul 28, 2021 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,4 +1,4 @@ service NewService { rpc DoSomething (DoSomethingRequest) returns (DoSomethingResponse) { } } -
shilomagen created this gist
Jul 28, 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,12 @@ service TotalsCalculator { rpc DoSomething (DoSomethingRequest) returns (DoSomethingResponse) { } } message DoSomethingRequest { string name = 1; int32 age = 2; } message DoSomethingResponse { string id = 1; }