dao.go 822 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package up
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. upclient "go-common/app/service/main/up/api/gorpc"
  6. upapi "go-common/app/service/main/up/api/v1"
  7. httpx "go-common/library/net/http/blademaster"
  8. )
  9. const (
  10. _upSpecialGroupURI = "/x/internal/uper/special/get_by_mid"
  11. )
  12. // Dao is search dao.
  13. type Dao struct {
  14. c *conf.Config
  15. up *upclient.Service
  16. httpClient *httpx.Client
  17. UpClient upapi.UpClient
  18. }
  19. // New new a search dao.
  20. func New(c *conf.Config) (d *Dao) {
  21. d = &Dao{
  22. c: c,
  23. up: upclient.New(c.UPRPC),
  24. httpClient: httpx.NewClient(c.HTTPClient.Normal),
  25. }
  26. var err error
  27. if d.UpClient, err = upapi.NewClient(c.UpClient); err != nil {
  28. panic(err)
  29. }
  30. return d
  31. }
  32. // Ping ping success.
  33. func (d *Dao) Ping(c context.Context) (err error) {
  34. return
  35. }