add makefile

This commit is contained in:
2024-11-03 15:47:59 +00:00
parent 41be07666c
commit 92d5d96967
4 changed files with 54 additions and 6 deletions

10
go.mod
View File

@@ -1,10 +1,16 @@
module github.com/onyx-and-iris/vbantxt-cli
module github.com/onyx-and-iris/vbantxt
go 1.19
require (
github.com/BurntSushi/toml v1.2.1
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.9.0
)
require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)