- add nldyp

master
李光春 1 year ago
parent df0df85fea
commit 6581107831

@ -1,5 +1,5 @@
package go_library
func Version() string {
return "1.0.53"
return "1.0.54"
}

@ -0,0 +1,25 @@
package nldyp
import (
"github.com/dtapps/go-library/utils/golog"
"github.com/dtapps/go-library/utils/gorequest"
)
// ClientConfig 实例配置
type ClientConfig struct {
vendor string // 秘钥
AppKey string // 渠道标记
}
// Client 实例
type Client struct {
requestClient *gorequest.App // 请求服务
config struct {
secret string // 秘钥
appKey string // 渠道标记
}
log struct {
status bool // 状态
client *golog.ApiClient // 日志服务
}
}

@ -0,0 +1,9 @@
package nldyp
const (
apiUrl = "https://api.nldyp.com"
)
const (
LogTable = "nldyp"
)
Loading…
Cancel
Save