diff --git a/client.go b/client.go index ea902c4..e39e153 100644 --- a/client.go +++ b/client.go @@ -16,12 +16,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 3274a3d..9a329e6 100644 --- a/const.go +++ b/const.go @@ -4,4 +4,4 @@ const ( logTable = "douyin" ) -const Version = "1.0.7" +const Version = "1.0.8"