service.go 519 B

1234567891011121314151617181920212223242526272829303132333435
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/conf"
  5. "go-common/app/interface/main/growup/dao"
  6. )
  7. // Service is growup service
  8. type Service struct {
  9. conf *conf.Config
  10. dao *dao.Dao
  11. sf *SnowFlake
  12. }
  13. // New fn
  14. func New(c *conf.Config) (s *Service) {
  15. s = &Service{
  16. conf: c,
  17. dao: dao.New(c),
  18. sf: NewSnowFlake(),
  19. }
  20. return s
  21. }
  22. // Ping fn
  23. func (s *Service) Ping(c context.Context) (err error) {
  24. return s.dao.Ping(c)
  25. }
  26. // Close dao
  27. func (s *Service) Close() {
  28. s.dao.Close()
  29. }