diff --git a/http2/README b/http2/README index 16cb516a..3de57ded 100644 --- a/http2/README +++ b/http2/README @@ -10,7 +10,7 @@ Status: * The client work has just started but shares a lot of code is coming along much quicker. -Docs are at https://godoc.org/github.com/bradfitz/http2 +Docs are at https://godoc.org/golang.org/x/net/http2 Demo test server at https://http2.golang.org/ diff --git a/http2/h2demo/h2demo.go b/http2/h2demo/h2demo.go index de6caaa7..b5ee4b24 100644 --- a/http2/h2demo/h2demo.go +++ b/http2/h2demo/h2demo.go @@ -31,7 +31,7 @@ import ( "camlistore.org/pkg/googlestorage" "camlistore.org/pkg/singleflight" - "github.com/bradfitz/http2" + "golang.org/x/net/http2" ) var ( @@ -51,7 +51,7 @@ func homeOldHTTP(w http.ResponseWriter, r *http.Request) {
See code & instructions for connecting at https://github.com/bradfitz/http2.
+See code & instructions for connecting at https://github.com/golang/net/tree/master/http2.