Skip to content

Commit 70fd1cd

Browse files
committed
[+] 使用了go modules作为包管理工具(go 1.11版本以上支持)
1 parent 50f1e90 commit 70fd1cd

File tree

2 files changed

+248
-0
lines changed

2 files changed

+248
-0
lines changed

go.mod

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
module x-crack
2+
3+
require (
4+
cloud.google.com/go v0.36.0 // indirect
5+
github.com/denisenkom/go-mssqldb v0.0.0-20190204142019-df6d76eb9289
6+
github.com/fortytw2/leaktest v1.3.0 // indirect
7+
github.com/go-redis/redis v6.15.1+incompatible
8+
github.com/jlaffaye/ftp v0.0.0-20190126081051-8019e6774408
9+
github.com/lib/pq v1.0.0
10+
github.com/mattn/go-colorable v0.1.0 // indirect
11+
github.com/mattn/go-isatty v0.0.4 // indirect
12+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
13+
github.com/netxfly/mysql v1.0.3
14+
github.com/onsi/ginkgo v1.7.0 // indirect
15+
github.com/onsi/gomega v1.4.3 // indirect
16+
github.com/patrickmn/go-cache v2.1.0+incompatible
17+
github.com/sirupsen/logrus v1.3.0
18+
github.com/soniah/gosnmp v0.0.0-20190109014816-922fbec967ca
19+
github.com/stacktitan/smb v0.0.0-20170721050911-ba124664fd6b
20+
github.com/urfave/cli v1.20.0
21+
github.com/x-cray/logrus-prefixed-formatter v0.5.2
22+
golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67
23+
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect
24+
gopkg.in/VividCortex/ewma.v1 v1.1.1 // indirect
25+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
26+
gopkg.in/cheggaaa/pb.v2 v2.0.6
27+
gopkg.in/fatih/color.v1 v1.7.0 // indirect
28+
gopkg.in/mattn/go-colorable.v0 v0.1.0 // indirect
29+
gopkg.in/mattn/go-isatty.v0 v0.0.4 // indirect
30+
gopkg.in/mattn/go-runewidth.v0 v0.0.4 // indirect
31+
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce
32+
gopkg.in/olivere/elastic.v3 v3.0.75
33+
gopkg.in/yaml.v2 v2.2.2 // indirect
34+
)

0 commit comments

Comments
 (0)