package main import ( "fmt" "os" "pixelridgesoftworks.com/BackGo/cmd" ) func main() { // Correctly pass RootCmd as it's already a *Command if err := cmd.ExecuteCommand(cmd.RootCmd, os.Args[1:]); err != nil { fmt.Fprintf(os.Stderr, "Error: %v\n", err) os.Exit(1) } }