Populated CLI with initial GO

This commit is contained in:
Lucas
2025-12-14 21:01:12 -08:00
parent d491fbd1fe
commit bfcf8d271b
10 changed files with 296 additions and 2 deletions

View File

@@ -1,5 +1,15 @@
package main
func main() {
import (
"fmt"
"os"
"definitive-opensource/cli"
)
func main() {
if err := cli.Run(); err != nil {
fmt.Println("Error:", err)
os.Exit(1)
}
}