helper function for making an http PATCH request.
(ctx context.Context, rawurl string, in, out interface{})
| 159 | |
| 160 | // helper function for making an http PATCH request. |
| 161 | func (c *HTTPClient) patch(ctx context.Context, rawurl string, in, out interface{}) error { |
| 162 | return c.do(ctx, rawurl, "PATCH", false, in, out) |
| 163 | } |
| 164 | |
| 165 | // helper function for making an http DELETE request. |
| 166 | func (c *HTTPClient) delete(ctx context.Context, rawurl string) error { |