mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-19 09:55:01 -07:00
447acd13d1
* 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
14 lines
169 B
Go
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)
|
|
}
|