Created
September 6, 2023 13:50
-
-
Save tomkerkhove/49679586ba3efa9d929f80aa851cb741 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
syntax = "proto3"; | |
service TestService { | |
rpc Unary(Foo) returns (Foo); | |
rpc ClientStreaming(stream Foo) returns (Foo); | |
rpc ServerStreaming(Foo) returns (stream Foo); | |
rpc Duplex(stream Foo) returns (stream Foo); | |
} | |
message Foo { | |
int32 value = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment