2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-27 09:08:26 +00:00
2017-09-13 14:09:48 +02:00

14 lines
207 B
Go

// +build go1.7
package management
import (
"io/ioutil"
"net/http"
)
func getResponseBody(response *http.Response) ([]byte, error) {
defer response.Body.Close()
return ioutil.ReadAll(response.Body)
}