asdf/main.go
Trevor Brown 447acd13d1 feat(golang-rewrite): info command
* Implement info command
* Remove duplicate and unneeded BATS tests from `main_test.go`
* remove download dir for plugin when removing plugin
* update plugins.Add function so downloads directory is created
2024-12-18 11:32:01 -05:00

14 lines
169 B
Go

// Main entrypoint for the CLI app
package main
import (
"asdf/cmd"
)
var version = "v0.15.0"
// Placeholder for the real code
func main() {
cmd.Execute(version)
}