12345678910111213141516171819202122232425262728 |
- package ping
- import (
- "context"
- "go-common/app/interface/main/app-show/conf"
- showdao "go-common/app/interface/main/app-show/dao/show"
- )
- type Service struct {
- showDao *showdao.Dao
- // bnDao *bndao.Dao
- }
- func New(c *conf.Config) (s *Service) {
- s = &Service{
- showDao: showdao.New(c),
- }
- return
- }
- // Ping is check server ping.
- func (s *Service) Ping(c context.Context) (err error) {
- if err = s.showDao.Ping(c); err != nil {
- return
- }
- return
- }
|