package cli import ( "os" ) // CLIEntry is the main entry point for the CLI application. // It creates the root command, executes it, and exits with status 1 // if an error occurs. This function should be called from main(). func CLIEntry() { rootCmd := NewRootCommand() if err := rootCmd.Execute(); err != nil { os.Exit(1) } }