package cli import ( "os" ) // CLIEntry is the main entry point for the CLI application func CLIEntry() { rootCmd := NewRootCommand() if err := rootCmd.Execute(); err != nil { os.Exit(1) } }