Skip to content

Instantly share code, notes, and snippets.

@tamasd
Last active December 11, 2015 21:38
Show Gist options
  • Save tamasd/4663379 to your computer and use it in GitHub Desktop.
Save tamasd/4663379 to your computer and use it in GitHub Desktop.
func getBody(resp *http.Response) []bytes {
respbody, _ := ioutil.ReadAll(resp.Body)
defer resp.Body.Close()
return respbody
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment