Method
Delete
(
path string,
requestBody interface{},
responseBody interface{},
)
Source from the content-addressed store, hash-verified
| 51 | } |
| 52 | |
| 53 | func (c *client) Delete( |
| 54 | path string, |
| 55 | requestBody interface{}, |
| 56 | responseBody interface{}, |
| 57 | ) (statusCode int, err error) { |
| 58 | return c.request( |
| 59 | http.MethodDelete, |
| 60 | path, |
| 61 | requestBody, |
| 62 | responseBody, |
| 63 | ) |
| 64 | } |
| 65 | |
| 66 | func (c *client) Request(method string, path string, requestBody interface{}, responseBody interface{}) (statusCode int, err error) { |
| 67 | return c.request( |
Callers
nothing calls this directly
Tested by
no test coverage detected