package main import ( "fmt" stdhttp "net/http" "go.wperron.io/toolkit/http" ) func main() { stdclient := stdhttp.Client{} stdclient.Transport = http.NewFollowRedirect(stdhttp.DefaultTransport) fmt.Println(stdclient.Get("https://google.com")) }