Skip to content

Commit

Permalink
Changing import paths for Go websocket lib. joewalnes#94
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Sergeyev committed Nov 10, 2014
1 parent 613c6f5 commit 108d82f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libwebsocketd/handler.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package libwebsocketd

import (
"code.google.com/p/go.net/websocket"
"golang.org/x/net/websocket"
"errors"
"fmt"
"net"
Expand Down
2 changes: 1 addition & 1 deletion libwebsocketd/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
package libwebsocketd

import (
"code.google.com/p/go.net/websocket"
"golang.org/x/net/websocket"
"errors"
"fmt"
"net"
Expand Down
2 changes: 1 addition & 1 deletion libwebsocketd/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package libwebsocketd

import (
"bufio"
"code.google.com/p/go.net/websocket"
"golang.org/x/net/websocket"
"crypto/tls"
"fmt"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion libwebsocketd/websocket_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package libwebsocketd
import (
"io"

"code.google.com/p/go.net/websocket"
"golang.org/x/net/websocket"
)

type WebSocketEndpoint struct {
Expand Down

0 comments on commit 108d82f

Please sign in to comment.