asdf/main.go

15 lines
224 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
// Replaced with the real version during a typical build
var version = "v-dev"
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
}