rpcbff.proto 237 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. option go_package = "./pb";
  3. package pb;
  4. message ChatReq {
  5. string chat_id = 1;
  6. }
  7. message ChatResp {
  8. string msg = 1;
  9. string pic = 2;
  10. }
  11. service rpcbff {
  12. rpc receiverChat(ChatReq) returns (stream ChatResp);
  13. }