ShieldMng.liverpc.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Code generated by protoc-gen-liverpc v0.1, DO NOT EDIT.
  2. // source: v1/ShieldMng.proto
  3. package v1
  4. import context "context"
  5. import proto "github.com/golang/protobuf/proto"
  6. import "go-common/library/net/rpc/liverpc"
  7. var _ proto.Message // generate to suppress unused imports
  8. // ===================
  9. // ShieldMng Interface
  10. // ===================
  11. type ShieldMng interface {
  12. // * 查询用户是否被屏蔽
  13. //
  14. IsShieldUser(context.Context, *ShieldMngIsShieldUserReq) (*ShieldMngIsShieldUserResp, error)
  15. }
  16. // =========================
  17. // ShieldMng Live Rpc Client
  18. // =========================
  19. type shieldMngRpcClient struct {
  20. client *liverpc.Client
  21. }
  22. // NewShieldMngRpcClient creates a Rpc client that implements the ShieldMng interface.
  23. // It communicates using Rpc and can be configured with a custom HTTPClient.
  24. func NewShieldMngRpcClient(client *liverpc.Client) ShieldMng {
  25. return &shieldMngRpcClient{
  26. client: client,
  27. }
  28. }
  29. func (c *shieldMngRpcClient) IsShieldUser(ctx context.Context, in *ShieldMngIsShieldUserReq) (*ShieldMngIsShieldUserResp, error) {
  30. out := new(ShieldMngIsShieldUserResp)
  31. err := doRpcRequest(ctx, c.client, 1, "ShieldMng.is_shield_user", in, out)
  32. if err != nil {
  33. return nil, err
  34. }
  35. return out, nil
  36. }