1 // +build go1.8 2 3 package eventsource 4 5 import "net/http" 6 7 // On go1.8 we don't need to do anything because it will copy headers on redirects 8 func setCheckRedirect(c *http.Client) { 9 } 10
View as plain text