Skip to content

Commit 8ad456f

Browse files
committed
Use gopkg paths
1 parent e9688c2 commit 8ad456f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DDP server implemented with go.
88
package main
99

1010
import (
11-
"github.com/meteorhacks/goddp/server"
11+
"gopkg.in/meteorhacks/goddp.v1/server"
1212
)
1313

1414
func main() {

server/integration_test/0_config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/meteorhacks/goddp/server"
7+
"gopkg.in/meteorhacks/goddp.v1/server"
88
)
99

1010
var (

server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"io"
66
"net/http"
77

8-
"github.com/meteorhacks/goddp/utils/random"
98
"github.com/meteorhacks/sockjs-go/sockjs"
109
"golang.org/x/net/websocket"
10+
"gopkg.in/meteorhacks/goddp.v1/utils/random"
1111
)
1212

1313
type Server struct {

0 commit comments

Comments
 (0)