asdf/go.mod
Trevor Brown 07b5813566 feat(golang-rewrite): create settings and config structs for loading config
* rename commands package to cmd
* add go-ini as a dependency
* write code to parse asdfrc file into Settings struct
* add go-envconfig as a dependency
* add go-homedir as a dependency
* implement first version of LoadConfig function to load environment variables into Config struct
2024-12-18 11:32:00 -05:00

17 lines
335 B
Modula-2

module asdf
go 1.21.5
require (
github.com/mitchellh/go-homedir v1.1.0
github.com/sethvargo/go-envconfig v1.0.0
github.com/spf13/cobra v1.8.0
gopkg.in/ini.v1 v1.67.0
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
)