(method string, url string, requestBody interface{}, responseBody interface{})
| 73 | } |
| 74 | |
| 75 | func (c *client) RequestURL(method string, url string, requestBody interface{}, responseBody interface{}) (statusCode int, err error) { |
| 76 | return c.requestURL( |
| 77 | method, |
| 78 | url, |
| 79 | requestBody, |
| 80 | responseBody, |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | func (c *client) Get(path string, responseBody interface{}) (statusCode int, err error) { |
| 85 | return c.request( |
nothing calls this directly
no test coverage detected