feat: initial commit with cobra setup

This commit is contained in:
2024-10-19 12:26:42 +05:30
commit b4eb561e1f
10 changed files with 190 additions and 0 deletions

16
go.mod Normal file
View File

@ -0,0 +1,16 @@
module github.com/0xtux/trok
go 1.22.7
require github.com/google/uuid v1.6.0
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/matoous/go-nanoid/v2 v2.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/rs/zerolog v1.33.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.12.0 // indirect
)