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
55package main
66
77import (
@@ -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
2121var 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 {
0 commit comments