(url string)
| 143 | } |
| 144 | |
| 145 | func (c *apiClient) Get(url string) (*http.Response, error) { |
| 146 | return c.RequestString(url, "GET", "") |
| 147 | } |
| 148 | |
| 149 | func (c *apiClient) Post(url, body string) (*http.Response, error) { |
| 150 | return c.RequestString(url, "POST", body) |
nothing calls this directly
no test coverage detected