添加golangci-lint配置

This commit is contained in:
GoEdgeLab
2023-08-08 18:36:24 +08:00
parent 7c08239ea1
commit a61426e8f6
5 changed files with 85 additions and 4 deletions

View File

@@ -435,6 +435,11 @@ func (this *EdgeDNSAPIProvider) doAPI(path string, params map[string]any, respPt
if err != nil {
return err
}
defer func() {
if resp.Body != nil {
_ = resp.Body.Close()
}
}()
if resp.StatusCode != http.StatusOK {
return errors.New("invalid response status code '" + types.String(resp.StatusCode) + "'")