go-common/app/interface/video/portal/service/service.go
2019-04-22 18:49:16 +08:00

34 lines
476 B
Go

package service
import (
"context"
"go-common/app/interface/video/portal/conf"
"go-common/app/interface/video/portal/dao"
)
// Service struct
type Service struct {
c *conf.Config
dao *dao.Dao
}
// New init
func New(c *conf.Config) (s *Service) {
s = &Service{
c: c,
dao: dao.New(c),
}
return s
}
// Ping Service
func (s *Service) Ping(c context.Context) (err error) {
return s.dao.Ping(c)
}
// Close Service
func (s *Service) Close() {
s.dao.Close()
}