mirror of
https://github.com/rancher/k3k.git
synced 2026-03-06 03:31:17 +00:00
17 lines
257 B
Go
17 lines
257 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func NewClusterCommand() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "cluster",
|
|
Usage: "cluster command",
|
|
Subcommands: []*cli.Command{
|
|
NewClusterCreateCmd(),
|
|
NewClusterDeleteCmd(),
|
|
},
|
|
}
|
|
}
|