helper function for making an http DELETE request.
(ctx context.Context, rawurl string)
| 164 | |
| 165 | // helper function for making an http DELETE request. |
| 166 | func (c *HTTPClient) delete(ctx context.Context, rawurl string) error { |
| 167 | return c.do(ctx, rawurl, "DELETE", false, nil, nil) |
| 168 | } |
| 169 | |
| 170 | // helper function to make an http request. |
| 171 | func (c *HTTPClient) do(ctx context.Context, rawurl, method string, noToken bool, in, out interface{}) error { |
no test coverage detected