diff --git a/utils/http.go b/utils/http.go index 4576d93..49b07e5 100644 --- a/utils/http.go +++ b/utils/http.go @@ -57,14 +57,6 @@ func (c *HTTPClient) GetResponseJSON(response interface{}) error { return errors.New("http request response body is empty") } - - // b ,err := ioutil.ReadAll(c.Response.Body) - // if err != nil { - // log.Println("body11: ", err.Error()) - // } - // log.Println("body22: ", string(b)) - - var json = jsoniter.ConfigCompatibleWithStandardLibrary defer c.Response.Body.Close() return json.NewDecoder(c.Response.Body).Decode(response)