carapace-bin/completers/kubeadm_completer/cmd/certs_certificateKey.go
2025-04-25 18:29:51 +02:00

19 lines
366 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var certs_certificateKeyCmd = &cobra.Command{
Use: "certificate-key",
Short: "Generate certificate keys",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(certs_certificateKeyCmd).Standalone()
certsCmd.AddCommand(certs_certificateKeyCmd)
}