Method
Request
(method string, path string, requestBody interface{}, responseBody interface{})
Source from the content-addressed store, hash-verified
| 64 | } |
| 65 | |
| 66 | func (c *client) Request(method string, path string, requestBody interface{}, responseBody interface{}) (statusCode int, err error) { |
| 67 | return c.request( |
| 68 | method, |
| 69 | path, |
| 70 | requestBody, |
| 71 | responseBody, |
| 72 | ) |
| 73 | } |
| 74 | |
| 75 | func (c *client) RequestURL(method string, url string, requestBody interface{}, responseBody interface{}) (statusCode int, err error) { |
| 76 | return c.requestURL( |
Callers
nothing calls this directly
Tested by
no test coverage detected