2017-09-13 12:09:48 +00:00
|
|
|
// +build go1.7
|
|
|
|
|
2017-08-05 18:30:20 +00:00
|
|
|
package management
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
func getResponseBody(response *http.Response) ([]byte, error) {
|
|
|
|
defer response.Body.Close()
|
|
|
|
return ioutil.ReadAll(response.Body)
|
|
|
|
}
|