Add pflag to go.mod

This commit is contained in:
Fedor Korotkiy 2021-03-15 13:47:01 +03:00
parent 1c69d01a8e
commit 72dee7bca9
2 changed files with 6 additions and 0 deletions

5
deps/deps.go vendored Normal file
View file

@ -0,0 +1,5 @@
package deps
import (
_ "github.com/spf13/pflag"
)

1
go.mod
View file

@ -21,6 +21,7 @@ require (
github.com/jmoiron/sqlx v1.2.0 github.com/jmoiron/sqlx v1.2.0
github.com/jonboulle/clockwork v0.1.0 github.com/jonboulle/clockwork v0.1.0
github.com/spf13/cobra v1.1.3 github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1 github.com/stretchr/testify v1.5.1
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect