Hello,
I'm sending requests to a server with http.Transport but after some time server sents GOAWAY frame and closes the connection. I want to reconnect and continue but I don't know which part of http.Transport handles reconnection.
req, err := http.NewRequest("GET", url, nil)
t := &http.Transport()
resp, err = t.RoundTrip(req)