ping.go 458 B

12345678910111213141516171819202122232425262728
  1. package ping
  2. import (
  3. "context"
  4. "go-common/app/interface/main/app-show/conf"
  5. showdao "go-common/app/interface/main/app-show/dao/show"
  6. )
  7. type Service struct {
  8. showDao *showdao.Dao
  9. // bnDao *bndao.Dao
  10. }
  11. func New(c *conf.Config) (s *Service) {
  12. s = &Service{
  13. showDao: showdao.New(c),
  14. }
  15. return
  16. }
  17. // Ping is check server ping.
  18. func (s *Service) Ping(c context.Context) (err error) {
  19. if err = s.showDao.Ping(c); err != nil {
  20. return
  21. }
  22. return
  23. }