diff --git a/main.go b/main.go index ee6646f..de7d7a3 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,6 @@ import ( "github.com/prometheus/procfs" "github.com/quic-go/quic-go" "github.com/quic-go/quic-go/http3" - "golang.org/x/net/http2" ) var ( @@ -79,7 +78,7 @@ var h2client = &http.Client{ var h2client_test = &http.Client{ // Yeah I know I can just use http.Transport and it will use HTTP/2 automatically // I prefer to set it up explicitly - Transport: &http2.Transport{}, + Transport: &http.Transport{}, } var client *http.Client