dao.go 630 B

123456789101112131415161718192021222324252627282930313233343536
  1. package pay
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/library/database/elastic"
  6. bm "go-common/library/net/http/blademaster"
  7. )
  8. // Dao str
  9. type Dao struct {
  10. c *conf.Config
  11. client *bm.Client
  12. assURI string
  13. es *elastic.Elastic
  14. }
  15. // New fn
  16. func New(c *conf.Config) (d *Dao) {
  17. d = &Dao{
  18. c: c,
  19. client: bm.NewClient(c.HTTPClient.Normal),
  20. assURI: c.Host.API + _assURI,
  21. es: elastic.NewElastic(&elastic.Config{
  22. Host: c.Host.MainSearch,
  23. HTTPClient: c.HTTPClient.Slow,
  24. }),
  25. }
  26. return d
  27. }
  28. // Ping fn
  29. func (d *Dao) Ping(c context.Context) (err error) {
  30. return
  31. }