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.
30 lines
444 B
30 lines
444 B
package dao |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"path/filepath" |
|
|
|
"go-common/app/admin/ep/melloi/conf" |
|
|
|
_ "github.com/go-sql-driver/mysql" |
|
"gopkg.in/h2non/gock.v1" |
|
) |
|
|
|
var ( |
|
d *Dao |
|
c context.Context |
|
) |
|
|
|
func init() { |
|
dir, _ := filepath.Abs("../cmd/convey-test.toml") |
|
flag.Set("conf", dir) |
|
conf.Init() |
|
d = New(conf.Conf) |
|
d.httpClient.SetTransport(gock.DefaultTransport) |
|
c = ctx() |
|
} |
|
|
|
func ctx() context.Context { |
|
return context.Background() |
|
}
|
|
|