1234567891011121314151617181920212223242526272829303132 |
- package mission
- import (
- "context"
- "go-common/app/job/main/videoup-report/conf"
- bm "go-common/library/net/http/blademaster"
- )
- // Dao is mission dao.
- type Dao struct {
- c *conf.Config
- httpR *bm.Client
- missAllURL string
- }
- // New new a mission dao.
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- c: c,
- // client
- httpR: bm.NewClient(c.HTTPClient.Read),
- // uri
- missAllURL: c.Host.WWW + _msAllURL,
- }
- return d
- }
- // Ping ping success.
- func (d *Dao) Ping(c context.Context) (err error) {
- return
- }
|