Skip to content

Commit

Permalink
Update dependency repos
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschaephraim committed Jan 15, 2015
1 parent 41ff170 commit d55b477
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
Expand Up @@ -65,7 +65,7 @@ var (
```go
import (
"github.com/jaschaephraim/lrserver"
"gopkg.in/fsnotify.v0"
"golang.org/x/exp/fsnotify"
"log"
"net/http"
)
Expand Down
2 changes: 1 addition & 1 deletion connection.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package lrserver

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

type connection struct {
websocket *websocket.Conn
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package lrserver_test

import (
"github.com/jaschaephraim/lrserver"
"gopkg.in/fsnotify.v1"
"golang.org/x/exp/fsnotify"
"log"
"net/http"
)
Expand Down
2 changes: 1 addition & 1 deletion lrserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lrserver.Alert(msg string).
package lrserver

import (
"code.google.com/p/go.net/websocket"
"golang.org/x/net/websocket"
"log"
"net/http"
"os"
Expand Down
2 changes: 1 addition & 1 deletion lrserver_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package lrserver_test

import (
"code.google.com/p/go.net/websocket"
"errors"
"github.com/jaschaephraim/lrserver"
"golang.org/x/net/websocket"
"net/http"
"reflect"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package lrserver

import (
"code.google.com/p/go.net/websocket"
"errors"
"golang.org/x/net/websocket"
"net"
"net/http"
)
Expand Down

0 comments on commit d55b477

Please sign in to comment.