asdf/main.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
169 B
Go
Raw Normal View History

// Main entrypoint for the CLI app
2024-02-02 20:12:41 -07:00
package main
import (
"asdf/cmd"
)
2024-02-02 20:12:41 -07:00
var version = "v0.15.0"
2024-02-02 20:12:41 -07:00
// Placeholder for the real code
func main() {
cmd.Execute(version)
2024-02-02 20:12:41 -07:00
}