You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
361 B
23 lines
361 B
package dao |
|
|
|
import ( |
|
"go-common/app/job/main/account-recovery/conf" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// Dao dao |
|
type Dao struct { |
|
c *conf.Config |
|
// httpClient |
|
httpClient *bm.Client |
|
} |
|
|
|
// New init mysql db |
|
func New(c *conf.Config) (dao *Dao) { |
|
dao = &Dao{ |
|
c: c, |
|
// httpClient |
|
httpClient: bm.NewClient(c.HTTPClientConfig), |
|
} |
|
return |
|
}
|
|
|