消息服务RPC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
430 B

2 years ago
2 years ago
  1. syntax = "proto3";
  2. package msgrpc;
  3. // 配置信息请求结构
  4. message Request {
  5. string data = 1;
  6. string time = 2;
  7. string sign = 3;
  8. }
  9. // 配置信息响应结构
  10. message Response {
  11. string data = 1;
  12. string time = 2;
  13. string sign = 3;
  14. }
  15. // rpc方法
  16. service MsgRpcService {
  17. rpc sendMsg (Request) returns (Response); // 发送消息
  18. rpc sendNotcie (Request) returns (Response); // 跃横推送消息
  19. }