dao.go 374 B

123456789101112131415161718192021222324
  1. package article
  2. import (
  3. "go-common/app/interface/main/creative/conf"
  4. article "go-common/app/interface/openplatform/article/rpc/client"
  5. )
  6. // Dao is archive dao.
  7. type Dao struct {
  8. // config
  9. c *conf.Config
  10. // rpc
  11. art *article.Service
  12. }
  13. // New init api url
  14. func New(c *conf.Config) (d *Dao) {
  15. d = &Dao{
  16. c: c,
  17. // rpc
  18. art: article.New(c.ArticleRPC),
  19. }
  20. return
  21. }