diff --git a/client.go b/client.go index 76b1543..2d4a718 100644 --- a/client.go +++ b/client.go @@ -13,12 +13,14 @@ type gormClientFun func() *dorm.GormClient // databaseName string type mongoClientFun func() (*dorm.MongoClient, string) +// ClientConfig 实例配置 type ClientConfig struct { GormClientFun gormClientFun // 日志配置 MongoClientFun mongoClientFun // 日志配置 Debug bool // 日志开关 } +// Client 实例 type Client struct { requestClient *gorequest.App // 请求服务 config struct { diff --git a/const.go b/const.go index 4ca54b6..08febe7 100644 --- a/const.go +++ b/const.go @@ -4,4 +4,4 @@ const ( logTable = "kuaishou" ) -const Version = "1.0.6" +const Version = "1.0.7"