rpcbff.proto 258 B

123456789101112131415161718
  1. syntax = "proto3";
  2. option go_package = "./pb";
  3. package pb;
  4. message ChatMsgReq {
  5. string chat_id = 1;
  6. }
  7. message ChatMsgReqResp {
  8. string text = 1;
  9. string pic = 2;
  10. }
  11. service rpcbff {
  12. rpc receiverChatMsg(ChatMsgReq) returns (stream ChatMsgReqResp);
  13. }