优化代码

This commit is contained in:
GoEdgeLab
2022-08-04 11:41:42 +08:00
parent efdebedcb1
commit 1d4f1e78fc
16 changed files with 38 additions and 44 deletions

View File

@@ -13,7 +13,6 @@ import (
"github.com/iwind/TeaGo/maps"
"github.com/iwind/TeaGo/types"
"io"
"io/ioutil"
"net/http"
"net/url"
"strconv"
@@ -270,7 +269,7 @@ func (this *CloudFlareProvider) doAPI(method string, apiPath string, args map[st
_ = resp.Body.Close()
}()
data, err := ioutil.ReadAll(resp.Body)
data, err := io.ReadAll(resp.Body)
if err != nil {
return err
}