golang 的 rabbitmq 消费项目
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

35 righe
725 B

  1. syntax = "proto3";
  2. package pb;
  3. option go_package = "gim/pkg/pb/";
  4. import "im.common.ext.proto";
  5. import "im.business.ext.proto";
  6. service BusinessInt {
  7. // 站长权限校验
  8. rpc MasterAuth (MasterAuthReq) returns (Empty);
  9. // 权限校验
  10. rpc Auth (AuthReq) returns (Empty);
  11. // 批量获取用户信息
  12. rpc GetUser (GetUserReq) returns (GetUserResp);
  13. // 批量获取用户信息
  14. rpc GetUsers (GetUsersReq) returns (GetUsersResp);
  15. }
  16. message MasterAuthReq {
  17. string master_id = 1;
  18. }
  19. message AuthReq {
  20. int64 user_id = 1;
  21. int64 device_id = 2;
  22. string token = 3;
  23. }
  24. message GetUsersReq {
  25. map<int64, int32> user_ids = 1; // 用户id
  26. }
  27. message GetUsersResp {
  28. map<int64, User> users = 1; // 用户信息
  29. }