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.
kashangwl/client.go

45 lines
991 B

package kashangwl
import (
"go.dtapp.net/dorm"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
)
type ConfigClient struct {
CustomerId int // 商家编号
CustomerKey string // 商家密钥
GormClient *dorm.GormClient // 日志数据库
LogClient *golog.GoLog // 日志驱动
LogDebug bool // 日志开关
}
// Client 卡商网服务
type Client struct {
requestClient *gorequest.App // 请求服务
logClient *golog.ApiClient // 日志服务
config *ConfigClient // 配置
}
func NewClient(config *ConfigClient) (*Client, error) {
var err error
c := &Client{config: config}
c.requestClient = gorequest.NewHttp()
if c.config.GormClient.Db != nil {
c.logClient, err = golog.NewApiClient(&golog.ApiClientConfig{
GormClient: c.config.GormClient,
TableName: logTable,
LogClient: c.config.LogClient,
LogDebug: c.config.LogDebug,
})
if err != nil {
return nil, err
}
}
return c, nil
}