Skip to content

Commit 0619c97

Browse files
author
CSTDev
committed
Added mongo dep and change executable name
1 parent 7d9ad5b commit 0619c97

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed
File renamed without changes.

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ require (
55
github.com/andybalholm/cascadia v1.0.0
66
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
77
github.com/headzoo/surf v1.0.0
8+
github.com/mongodb/mongo-go-driver v1.0.2 // indirect
89
github.com/sirupsen/logrus v1.4.1
910
golang.org/x/net v0.0.0-20180417003750-8d16fa6dc9a8
1011
golang.org/x/text v0.3.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ github.com/headzoo/surf v1.0.0 h1:d2h9ftKeQYj7tKqAjQtAA0lJVkO8cTxvzdXLynmNnHM=
99
github.com/headzoo/surf v1.0.0/go.mod h1:/bct0m/iMNEqpn520y01yoaWxsAEigGFPnvyR1ewR5M=
1010
github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk=
1111
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
12+
github.com/mongodb/mongo-go-driver v1.0.2 h1:pA9Cdc8anMfhQKYvMSuPTVG+/PqoNoJ2ffGf9q8HvLs=
13+
github.com/mongodb/mongo-go-driver v1.0.2/go.mod h1:NK/HWDIIZkaYsnYa0hmtP443T5ELr0KDecmIioVuuyU=
1214
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1315
github.com/sirupsen/logrus v1.4.1 h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k=
1416
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GOBUILD=$(GOCMD) build
33
GOTEST=$(GOCMD) test
44

55
build:
6-
GO111MODULE=on $(GOBUILD) -v ./cmd/cli/main.go
6+
GO111MODULE=on $(GOBUILD) -v ./cmd/cli/moonapi.go
77

88
test:
99
GO111MODULE=on $(GOTEST) -v ./...

0 commit comments

Comments
 (0)