写死请求地址,换接口,返回结果也会变,不用配置

This commit is contained in:
yuguojian
2025-06-26 16:24:21 +08:00
parent 587fd91338
commit 754a8910f2
2 changed files with 4 additions and 4 deletions

View File

@@ -18,10 +18,10 @@ type AliCloudExpressClient struct {
cache ICacheAdapter
}
func NewAliCloudExpressClient(host, appCode string) *AliCloudExpressClient {
func NewAliCloudExpressClient(appCode string) *AliCloudExpressClient {
return &AliCloudExpressClient{
AppCode: appCode,
Host: host,
Host: "https://qryexpress.market.alicloudapi.com/lundear/expressTracking",
}
}