mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-05 03:00:25 +00:00
19 lines
306 B
Go
19 lines
306 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// clusterCmd represents the cluster command
|
|
var clusterCmd = &cobra.Command{
|
|
Use: "cluster",
|
|
Short: "Set configuration for cluster",
|
|
Long: ``,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
configCmd.AddCommand(clusterCmd)
|
|
}
|