For example, I am making a post request and I don't need the response object at all.
_, err := http.Post(url, "", &buf)
Am I safe from memory leak in that case? Will the response.Body be drained for proper connection reuse? Or I need to do the usual defer resp.Body.Close()
thing?