mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-24 20:35:03 -07:00
dab4657784
* Address Go linter warnings * Fix Github workflow
12 lines
137 B
Go
12 lines
137 B
Go
// Main entrypoint for the CLI app
|
|
package main
|
|
|
|
import (
|
|
"asdf/cmd"
|
|
)
|
|
|
|
// Placeholder for the real code
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|