asdf/main.go
Trevor Brown 9097696a4f feat(golang-rewrite): create Makefile
* Address Go linter warnings
* Fix Github workflow
2024-12-18 11:32:00 -05:00

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()
}