I feel like I've seen it mentioned somewhere that you don't need to close an http.Response.Body if you didn't use the response.
But, I can't find that anywhere in the official docs.
The docs say (currently) "Caller should close resp.Body when done reading from it", but there's no mention that resp.Body *must* be closed.
Am I mis-remembering something, or is
_, err := http.Get(url)
not supposed to leak connections?