(path string, responseBody interface{})
| 82 | } |
| 83 | |
| 84 | func (c *client) Get(path string, responseBody interface{}) (statusCode int, err error) { |
| 85 | return c.request( |
| 86 | http.MethodGet, |
| 87 | path, |
| 88 | nil, |
| 89 | responseBody, |
| 90 | ) |
| 91 | } |
| 92 | |
| 93 | func (c *client) Post( |
| 94 | path string, |