asdf/main.go
Trevor Brown 7a72ce60ac 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 10:21:11 -05:00

11 lines
102 B
Go

package main
import (
"asdf/cmd"
)
// Placeholder for the real code
func main() {
cmd.Execute()
}