mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-23 20:05:09 -07:00
07b5813566
* 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
17 lines
335 B
Modula-2
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
|
|
)
|