Post FIXME ...
(
path string,
query url.Values,
body interface{},
headers http.Header,
)
| 410 | |
| 411 | // Post FIXME ... |
| 412 | func (apiClient *ApiClient) Post( |
| 413 | path string, |
| 414 | query url.Values, |
| 415 | body interface{}, |
| 416 | headers http.Header, |
| 417 | ) (*http.Response, errors.Error) { |
| 418 | return apiClient.Do(http.MethodPost, path, query, body, headers) |
| 419 | } |
| 420 | |
| 421 | // UnmarshalResponse FIXME ... |
| 422 | func UnmarshalResponse(res *http.Response, v interface{}) errors.Error { |
nothing calls this directly
no test coverage detected