figure.go 716 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package figure
  2. import (
  3. "context"
  4. "go-common/app/service/main/figure/model"
  5. "go-common/library/net/rpc"
  6. )
  7. const (
  8. _userFigure = "RPC.UserFigure"
  9. )
  10. const (
  11. _appid = "account.service.figure"
  12. )
  13. var (
  14. _noRes = &struct{}{}
  15. )
  16. // Service struct info.
  17. type Service struct {
  18. client *rpc.Client2
  19. }
  20. // New create instance of service and return.
  21. func New(c *rpc.ClientConfig) (s *Service) {
  22. s = &Service{}
  23. s.client = rpc.NewDiscoveryCli(_appid, c)
  24. return
  25. }
  26. // UserFigure get user figure & figure rank info.
  27. func (s *Service) UserFigure(c context.Context, arg *model.ArgUserFigure) (res *model.FigureWithRank, err error) {
  28. res = &model.FigureWithRank{}
  29. err = s.client.Call(c, _userFigure, arg, res)
  30. return
  31. }