This commit is contained in:
a 2022-04-13 02:49:07 -05:00
parent b28e4117ad
commit c5b178c018
2 changed files with 16 additions and 2 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
run-cli: tidy
go run ./cmd/cli
tidy:
go mod tidy

6
go.mod
View File

@ -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
)