type IDebClient interface {
// Post makes a POST request to one of Debricked's API endpoints Post(uri string, contentType string, body *bytes.Buffer) (*http.Response, error)
// Get makes a GET request to one of Debricked's API endpoints Get(uri string, format string) (*http.Response, error)
}