(path string, auth bool)
| 192 | } |
| 193 | |
| 194 | func (c *Client) Get(path string, auth bool) (map[string]interface{}, error) { |
| 195 | return c.Request("GET", path, nil, auth) |
| 196 | } |
| 197 | |
| 198 | func (c *Client) Post(path string, what interface{}, auth bool) (map[string]interface{}, error) { |
| 199 | return c.Request("POST", path, what, auth) |
no test coverage detected