remove default values temporarily (#64)

This commit is contained in:
Kirill
2024-01-29 18:51:12 +03:00
committed by GitHub
parent 965c83ba85
commit 35832e6269

View File

@@ -62,11 +62,6 @@ func (c Client) Request(ctx context.Context, method string, path string, req, re
if err != nil {
return nil, err
}
rawQuery, err := buildRawQuery(httpReq, req)
if err != nil {
return nil, err
}
httpReq.URL.RawQuery = rawQuery
httpResp, err := c.client.Do(httpReq)
if err != nil {