package cli import ( "github.com/spf13/cobra" ) var clusterCmd = &cobra.Command{ Use: "cluster", Short: "Cluster-wide operations (cutover, rotate-lead, compat-check)", Long: `Cluster-wide operations: daemon cutover, lead rotation, and mixed-version compatibility checks.`, } func init() { clusterCmd.AddCommand(clusterCutoverCmd, clusterRotateLeadCmd, compatCheckCmd) rootCmd.AddCommand(clusterCmd) }