Skip to content

Commit

Permalink
updated to point to fork
Browse files Browse the repository at this point in the history
  • Loading branch information
calbot committed Nov 27, 2020
1 parent d5c7804 commit e09d524
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net/http"
"testing"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/autobahn/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"time"
"unicode/utf8"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

var upgrader = websocket.Upgrader{
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"net/http"
"time"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/command/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"os/exec"
"time"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/echo/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"os/signal"
"time"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

var addr = flag.String("addr", "localhost:8080", "http service address")
Expand Down
2 changes: 1 addition & 1 deletion examples/echo/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"log"
"net/http"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

var addr = flag.String("addr", "localhost:8080", "http service address")
Expand Down
2 changes: 1 addition & 1 deletion examples/filewatch/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"strconv"
"time"

"github.com/gorilla/websocket"
"github.com/calbot/websocket"
)

const (
Expand Down

0 comments on commit e09d524

Please sign in to comment.