diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3494124 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + + + + + + +run-cli: tidy + go run ./cmd/cli + + +tidy: + go mod tidy diff --git a/go.mod b/go.mod index 8a4f0d7..8039bb9 100644 --- a/go.mod +++ b/go.mod @@ -2,10 +2,12 @@ module git.tuxpa.in/a/card_id go 1.18 -require gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b +require ( + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b + lukechampine.com/frand v1.4.2 +) require ( github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect - lukechampine.com/frand v1.4.2 // indirect )