mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-24 20:35:03 -07:00
7a72ce60ac
* 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
11 lines
102 B
Go
11 lines
102 B
Go
package main
|
|
|
|
import (
|
|
"asdf/cmd"
|
|
)
|
|
|
|
// Placeholder for the real code
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|