Skip to content

Commit 7cd3904

Browse files
author
Ben Zimmerman
committed
change module to github.com/SpiderOak/webwormhole
1 parent cd5031b commit 7cd3904

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ On another use the code to establish a connection:
2323

2424
To install the command line tool:
2525

26-
$ go install webwormhole.io/cmd/ww@latest
26+
$ go install github.com/SpiderOak/webwormhole/cmd/ww@latest
2727

2828
This requires Go 1.13 or newer.
2929

cmd/ww/main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Command ww moves files and other data over WebRTC.
22
//
33
// Install using:
4-
// go get -u webwormhole.io/cmd/ww
4+
// go get -u github.com/SpiderOak/webwormhole/cmd/ww
55
package main
66

77
import (
@@ -13,9 +13,9 @@ import (
1313
"os"
1414
"strconv"
1515

16+
"github.com/SpiderOak/webwormhole/wordlist"
17+
"github.com/SpiderOak/webwormhole/wormhole"
1618
"rsc.io/qr"
17-
"webwormhole.io/wordlist"
18-
"webwormhole.io/wormhole"
1919
)
2020

2121
var subcmds = map[string]func(args ...string){
@@ -82,7 +82,7 @@ func newConn(code string, length int) *wormhole.Wormhole {
8282
"%s%s%s",
8383
"the signalling server is running an incompatable version.\n",
8484
"try upgrading the client:\n\n",
85-
" go get webwormhole.io/cmd/ww\n",
85+
" go get github.com/SpiderOak/webwormhole/cmd/ww\n",
8686
)
8787
}
8888
if err != nil {
@@ -115,7 +115,7 @@ func newConn(code string, length int) *wormhole.Wormhole {
115115
"%s%s%s",
116116
"the signalling server is running an incompatable version.\n",
117117
"try upgrading the client:\n\n",
118-
" go get webwormhole.io/cmd/ww\n",
118+
" go get github.com/SpiderOak/webwormhole/cmd/ww\n",
119119
)
120120
}
121121
if err != nil {

cmd/ww/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import (
2121
"time"
2222

2323
"github.com/NYTimes/gziphandler"
24+
"github.com/SpiderOak/webwormhole/wormhole"
2425
webrtc "github.com/pion/webrtc/v3"
2526
"github.com/prometheus/client_golang/prometheus"
2627
"github.com/prometheus/client_golang/prometheus/promhttp"
2728
"golang.org/x/crypto/acme/autocert"
2829
"nhooyr.io/websocket"
29-
"webwormhole.io/wormhole"
3030
)
3131

3232
// slotTimeout is the the maximum amount of time a client is allowed to

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module webwormhole.io
1+
module github.com/SpiderOak/webwormhole
22

33
go 1.13
44

web/webwormhole.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import (
1515
"syscall/js"
1616

1717
"filippo.io/cpace"
18+
"github.com/SpiderOak/webwormhole/wordlist"
1819
"golang.org/x/crypto/hkdf"
1920
"golang.org/x/crypto/nacl/secretbox"
2021
"rsc.io/qr"
21-
"webwormhole.io/wordlist"
2222
)
2323

2424
// state is the PAKE state so far.

0 commit comments

Comments
 (0)