Merge pull request #742 from tailorvii/wangsu

fix: wangsu get certificate list api error #741
This commit is contained in:
RHQYZ 2025-06-01 23:05:10 +08:00 committed by GitHub
commit d3e8bacd58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ import (
func (c *Client) ListCertificates() (*ListCertificatesResponse, error) {
resp := &ListCertificatesResponse{}
_, err := c.client.SendRequestWithResult(http.MethodGet, "/api/certificate", nil, resp)
_, err := c.client.SendRequestWithResult(http.MethodGet, "/api/ssl/certificate", nil, resp)
if err != nil {
return resp, err
}