Skip to content

Commit

Permalink
add go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
schollz committed Sep 7, 2018
1 parent 53e0585 commit 87a17fb
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module github.com/schollz/croc

require (
github.com/briandowns/spinner v0.0.0-20180822135157-9f016caa1359
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
github.com/dustin/go-humanize v0.0.0-20180713052910-9f541cc9db5d
github.com/fatih/color v1.7.0 // indirect
github.com/frankenbeanies/uuid4 v0.0.0-20180313125435-68b799ec299a
github.com/gorilla/websocket v1.4.0
github.com/mars9/crypt v0.0.0-20150406101210-65899cf653ff
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/pkg/errors v0.8.0
github.com/schollz/mnemonicode v1.0.1
github.com/schollz/pake v1.0.2
github.com/schollz/peerdiscovery v1.2.1
github.com/schollz/progressbar/v2 v2.5.3
github.com/tscholl2/siec v0.0.0-20180721101609-21667da05937
github.com/urfave/cli v1.20.0
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
)
2 changes: 1 addition & 1 deletion src/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/gorilla/websocket"
"github.com/pkg/errors"
"github.com/schollz/pake"
"github.com/schollz/progressbar"
"github.com/schollz/progressbar/v2"
)

var isPrinted bool
Expand Down
2 changes: 1 addition & 1 deletion src/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/briandowns/spinner"
"github.com/gorilla/websocket"
"github.com/schollz/pake"
"github.com/schollz/progressbar"
"github.com/schollz/progressbar/v2"
)

const (
Expand Down

0 comments on commit 87a17fb

Please sign in to comment.