mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
13 lines
168 B
Go
13 lines
168 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var certsCmd = &cobra.Command{
|
|
Use: "certs",
|
|
Short: "cluster certs",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(certsCmd)
|
|
}
|