mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 05:45:24 +01:00
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)
|
|
}
|