mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-19 09:55:01 -07:00
9097696a4f
* 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()
|
|
}
|