Skip to content

Commit

Permalink
Rename module to use fork
Browse files Browse the repository at this point in the history
As far as I can tell, in Go you have to replace the module name. A
replacement directive will not propagate to users.
  • Loading branch information
MarcoPolo committed Oct 18, 2024
1 parent d669d75 commit 5c8d91a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# webtransport-go

[![Documentation](https://img.shields.io/badge/docs-quic--go.net-red?style=flat)](https://quic-go.net/docs/)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/quic-go/webtransport-go)](https://pkg.go.dev/github.com/quic-go/webtransport-go)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/marcopolo/webtransport-go)](https://pkg.go.dev/github.com/marcopolo/webtransport-go)
[![Code Coverage](https://img.shields.io/codecov/c/github/quic-go/webtransport-go/master.svg?style=flat-square)](https://codecov.io/gh/quic-go/webtransport-go/)

webtransport-go is an implementation of the WebTransport protocol, based on [quic-go](https://github.com/quic-go/quic-go). It currently implements [draft-02](https://www.ietf.org/archive/id/draft-ietf-webtrans-http3-02.html) of the specification.
Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/quic-go/webtransport-go"
"github.com/marcopolo/webtransport-go"

"github.com/quic-go/quic-go"
"github.com/quic-go/quic-go/http3"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/quic-go/webtransport-go
module github.com/marcopolo/webtransport-go

go 1.22

Expand Down
2 changes: 1 addition & 1 deletion interop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/quic-go/quic-go/http3"

"github.com/quic-go/webtransport-go"
"github.com/marcopolo/webtransport-go"
)

//go:embed index.html
Expand Down
2 changes: 1 addition & 1 deletion server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"testing"
"time"

"github.com/quic-go/webtransport-go"
"github.com/marcopolo/webtransport-go"

"github.com/quic-go/quic-go"
"github.com/quic-go/quic-go/http3"
Expand Down
2 changes: 1 addition & 1 deletion webtransport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

"golang.org/x/exp/rand"

"github.com/quic-go/webtransport-go"
"github.com/marcopolo/webtransport-go"

"github.com/quic-go/quic-go"
"github.com/quic-go/quic-go/http3"
Expand Down

0 comments on commit 5c8d91a

Please sign in to comment.