go-common/app/job/main/web-goblin/dao/esports/dao.go
2019-04-22 18:49:16 +08:00

48 lines
889 B
Go

package esports
import (
"context"
"go-common/app/job/main/web-goblin/conf"
"go-common/library/database/sql"
bm "go-common/library/net/http/blademaster"
)
const _pushURL = "/x/internal/push-strategy/task/add"
// Dao dao
type Dao struct {
c *conf.Config
// http client
http *bm.Client
messageHTTPClient *bm.Client
// push service URL
pushURL string
// db
db *sql.DB
}
// New init mysql db
func New(c *conf.Config) (dao *Dao) {
dao = &Dao{
c: c,
http: bm.NewClient(c.HTTPClient),
messageHTTPClient: bm.NewClient(c.MessageHTTPClient),
db: sql.NewMySQL(c.DB.Esports),
pushURL: c.Host.API + _pushURL,
}
return
}
// Close close the resource.
func (d *Dao) Close() {
}
// Ping ping dao
func (d *Dao) Ping(c context.Context) (err error) {
if err = d.db.Ping(c); err != nil {
return
}
return
}