(url, body string)
| 147 | } |
| 148 | |
| 149 | func (c *apiClient) Post(url, body string) (*http.Response, error) { |
| 150 | return c.RequestString(url, "POST", body) |
| 151 | } |
| 152 | |
| 153 | func (c *apiClient) PutJSON(url string, o interface{}) (*http.Response, error) { |
| 154 | return c.RequestJSON(url, "PUT", o) |
nothing calls this directly
no test coverage detected