// Main entrypoint for the CLI app package main import ( "asdf/cmd" ) // Replaced with the real version during a typical build var version = "v-dev" // Placeholder for the real code func main() { cmd.Execute(version) }