service.go 499 B

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