1 Star 0 Fork 0

wx-rdc/secloud-sdk-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
client.go 813 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenyuteng 提交于 2023-05-10 10:21 . Feature: autotest
package secloud
type ClientConfig struct {
ServerUrl string
}
type Client struct {
Config *ClientConfig
AuthApi *AuthService
CipherApi *CipherService
KmsApi *KmsService
SdmApi *SdmService
AutoTestApi *AutoTestService
}
// NewAPIClient returns a client to call apis, ClientConfig contains ServerUrl
func NewAPIClient(config *ClientConfig) *Client {
cfg := verifyAndStandardizeConfig(config)
setBaseUrl(cfg.ServerUrl)
return &Client{
Config: cfg,
AuthApi: NewAuthService(),
CipherApi: NewCipherService(),
KmsApi: NewKmsService(),
SdmApi: NewSdmService(),
AutoTestApi: NewAutoTestService(),
}
}
// NewConfiguration returns a config that contains ServerUrl
func NewConfiguration(url string) *ClientConfig {
return &ClientConfig{ServerUrl: url}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wx-rdc/secloud-sdk-go.git
git@gitee.com:wx-rdc/secloud-sdk-go.git
wx-rdc
secloud-sdk-go
secloud-sdk-go
v0.3.1

搜索帮助