Skip to content

Instantly share code, notes, and snippets.

@pramonow
Created November 16, 2020 15:09
Show Gist options
  • Save pramonow/90baa9e9548b87296fb3384a7f61c1c6 to your computer and use it in GitHub Desktop.
Save pramonow/90baa9e9548b87296fb3384a7f61c1c6 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package protobuf;
service StreamService {
rpc FetchResponse (Request) returns (stream Response) {}
}
message Request {
int32 id = 1;
}
message Response {
string result = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment