Update go.{mod,sum} recreating them from scratch

$ rm go.{mod,sum}; go mod init github.com/BBVA/kapow
go: creating new go.mod: module github.com/BBVA/kapow
$ go mod tidy -v
go: finding github.com/google/shlex latest

With this, we've gotten rid an unneeded dep (github.com/spf13/pflag @ v1.0.5).
This commit is contained in:
pancho horrillo
2019-11-19 17:50:16 +01:00
parent 806905c49c
commit 28f4b969f9
2 changed files with 0 additions and 15 deletions
-1
View File
@@ -7,6 +7,5 @@ require (
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.3
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/h2non/gock.v1 v1.0.15
)