test.proto 203 B

1234567891011121314
  1. syntax = "proto3";
  2. package pb;
  3. service Test {
  4. rpc Test(stream Request) returns (stream Response){}
  5. }
  6. message Request {
  7. string msg = 1;
  8. }
  9. message Response {
  10. string msg = 1;
  11. }