mirror of https://github.com/restic/restic.git
12 lines
190 B
Go
12 lines
190 B
Go
|
package management
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func getResponseBody(response *http.Response) ([]byte, error) {
|
||
|
defer response.Body.Close()
|
||
|
return ioutil.ReadAll(response.Body)
|
||
|
}
|