$ 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).
12 lines
236 B
Modula-2
12 lines
236 B
Modula-2
module github.com/BBVA/kapow
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/mux v1.7.3
|
|
github.com/spf13/cobra v0.0.5
|
|
gopkg.in/h2non/gock.v1 v1.0.15
|
|
)
|