2019-04-22 02:59:20 +00:00

22 lines
352 B
Go

package kfc
import (
"go-common/app/job/main/activity/conf"
"go-common/library/net/http/blademaster"
)
// Dao .
type Dao struct {
httpClient *blademaster.Client
kfcDelURL string
}
// New init
func New(c *conf.Config) (d *Dao) {
d = &Dao{
httpClient: blademaster.NewClient(c.HTTPClient),
kfcDelURL: c.Host.APICo + _kfcDelURI,
}
return
}