fixed 1panel system ssl deploy

This commit is contained in:
Bigsk
2025-06-13 23:43:24 +08:00
parent a048eb95a9
commit 9542079e20
3 changed files with 17 additions and 4 deletions

View File

@@ -14,7 +14,8 @@ import (
)
type Client struct {
client *resty.Client
client *resty.Client
version string
}
func NewClient(serverUrl, apiVersion, apiKey string) *Client {
@@ -36,7 +37,8 @@ func NewClient(serverUrl, apiVersion, apiKey string) *Client {
})
return &Client{
client: client,
client: client,
version: apiVersion,
}
}