(url string, o interface{})
| 151 | } |
| 152 | |
| 153 | func (c *apiClient) PutJSON(url string, o interface{}) (*http.Response, error) { |
| 154 | return c.RequestJSON(url, "PUT", o) |
| 155 | } |
| 156 | |
| 157 | var errNotFound = errors.New("invalid endpoint or API call") |
| 158 |
nothing calls this directly
no test coverage detected