2025-04-25 18:29:51 +02:00

19 lines
318 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var alphaCmd = &cobra.Command{
Use: "alpha",
Short: "Kubeadm experimental sub-commands",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(alphaCmd).Standalone()
rootCmd.AddCommand(alphaCmd)
}