service.go 703 B

12345678910111213141516171819202122232425262728293031
  1. package assist
  2. import (
  3. "go-common/app/interface/main/creative/conf"
  4. "go-common/app/interface/main/creative/dao/account"
  5. "go-common/app/interface/main/creative/dao/assist"
  6. "go-common/app/interface/main/creative/dao/danmu"
  7. "go-common/app/interface/main/creative/dao/reply"
  8. "go-common/app/interface/main/creative/service"
  9. )
  10. // Service assist.
  11. type Service struct {
  12. c *conf.Config
  13. assist *assist.Dao
  14. reply *reply.Dao
  15. dm *danmu.Dao
  16. acc *account.Dao
  17. }
  18. // New get assist service.
  19. func New(c *conf.Config, rpcdaos *service.RPCDaos) *Service {
  20. s := &Service{
  21. c: c,
  22. assist: assist.New(c),
  23. reply: reply.New(c),
  24. dm: danmu.New(c),
  25. acc: rpcdaos.Acc,
  26. }
  27. return s
  28. }