(path string)
| 454 | } |
| 455 | |
| 456 | func (c *simpleClient) Get(path string) (*simpleResponse, error) { |
| 457 | return c.performRequest("GET", path, nil, nil) |
| 458 | } |
| 459 | |
| 460 | func (c *simpleClient) GetFile(path string, mimeType string) (*simpleResponse, error) { |
| 461 | return c.performRequest("GET", path, nil, func(req *http.Request) { |