(path string, query url.Values, headers http.Header)
| 66 | func (c *refreshApiClient) GetAfterFunction() plugin.ApiClientAfterResponse { return nil } |
| 67 | |
| 68 | func (c *refreshApiClient) Get(path string, query url.Values, headers http.Header) (*http.Response, errors.Error) { |
| 69 | return c.do(http.MethodGet, path, query, nil, headers) |
| 70 | } |
| 71 | |
| 72 | func (c *refreshApiClient) Post(path string, query url.Values, body interface{}, headers http.Header) (*http.Response, errors.Error) { |
| 73 | return c.do(http.MethodPost, path, query, body, headers) |