Skip to content

Commit

Permalink
change module to github.com/SpiderOak/webwormhole
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Zimmerman committed Jul 9, 2021
1 parent cd5031b commit 7cd3904
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ On another use the code to establish a connection:

To install the command line tool:

$ go install webwormhole.io/cmd/ww@latest
$ go install github.com/SpiderOak/webwormhole/cmd/ww@latest

This requires Go 1.13 or newer.

Expand Down
10 changes: 5 additions & 5 deletions cmd/ww/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Command ww moves files and other data over WebRTC.
//
// Install using:
// go get -u webwormhole.io/cmd/ww
// go get -u github.com/SpiderOak/webwormhole/cmd/ww
package main

import (
Expand All @@ -13,9 +13,9 @@ import (
"os"
"strconv"

"github.com/SpiderOak/webwormhole/wordlist"
"github.com/SpiderOak/webwormhole/wormhole"
"rsc.io/qr"
"webwormhole.io/wordlist"
"webwormhole.io/wormhole"
)

var subcmds = map[string]func(args ...string){
Expand Down Expand Up @@ -82,7 +82,7 @@ func newConn(code string, length int) *wormhole.Wormhole {
"%s%s%s",
"the signalling server is running an incompatable version.\n",
"try upgrading the client:\n\n",
" go get webwormhole.io/cmd/ww\n",
" go get github.com/SpiderOak/webwormhole/cmd/ww\n",
)
}
if err != nil {
Expand Down Expand Up @@ -115,7 +115,7 @@ func newConn(code string, length int) *wormhole.Wormhole {
"%s%s%s",
"the signalling server is running an incompatable version.\n",
"try upgrading the client:\n\n",
" go get webwormhole.io/cmd/ww\n",
" go get github.com/SpiderOak/webwormhole/cmd/ww\n",
)
}
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/ww/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import (
"time"

"github.com/NYTimes/gziphandler"
"github.com/SpiderOak/webwormhole/wormhole"
webrtc "github.com/pion/webrtc/v3"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"golang.org/x/crypto/acme/autocert"
"nhooyr.io/websocket"
"webwormhole.io/wormhole"
)

// slotTimeout is the the maximum amount of time a client is allowed to
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module webwormhole.io
module github.com/SpiderOak/webwormhole

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion web/webwormhole.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (
"syscall/js"

"filippo.io/cpace"
"github.com/SpiderOak/webwormhole/wordlist"
"golang.org/x/crypto/hkdf"
"golang.org/x/crypto/nacl/secretbox"
"rsc.io/qr"
"webwormhole.io/wordlist"
)

// state is the PAKE state so far.
Expand Down

0 comments on commit 7cd3904

Please sign in to comment.