(path string, body io.Reader)
| 409 | } |
| 410 | |
| 411 | func (c *Client) PostRequest(path string, body io.Reader) (*http.Request, error) { |
| 412 | return http.NewRequest(http.MethodPost, getURL(path), body) |
| 413 | } |
| 414 | |
| 415 | func (c *Client) Patch(path string, body io.Reader) (*Response, error) { |
| 416 | c.log.Debug("testcli: patch request %q", path) |