service.go 592 B

123456789101112131415161718192021222324252627282930313233343536
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/feedback/conf"
  5. "go-common/app/interface/main/feedback/dao"
  6. locrpc "go-common/app/service/main/location/rpc/client"
  7. )
  8. // Service struct.
  9. type Service struct {
  10. // dao
  11. dao *dao.Dao
  12. // conf
  13. c *conf.Config
  14. // rpc
  15. locationRPC *locrpc.Service
  16. }
  17. // New new Tag service.
  18. func New(c *conf.Config) (s *Service) {
  19. s = &Service{
  20. c: c,
  21. // rpc
  22. locationRPC: locrpc.New(c.LocationRPC),
  23. }
  24. // init dao
  25. s.dao = dao.New(c)
  26. return
  27. }
  28. // Ping check server ok
  29. func (s *Service) Ping(c context.Context) (err error) {
  30. return
  31. }