(path string, payload interface{})
| 478 | } |
| 479 | |
| 480 | func (c *simpleClient) PatchJSON(path string, payload interface{}) (*simpleResponse, error) { |
| 481 | return c.jsonRequest("PATCH", path, payload, nil) |
| 482 | } |
| 483 | |
| 484 | func (c *simpleClient) PostFile(path string, contents io.Reader, fileSize int64) (*simpleResponse, error) { |
| 485 | return c.performRequest("POST", path, contents, func(req *http.Request) { |
no test coverage detected