mirror of
https://github.com/rancher/k3k.git
synced 2026-03-05 19:22:12 +00:00
18 lines
313 B
Go
18 lines
313 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func NewClusterCmd(appCtx *AppContext) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "cluster",
|
|
Usage: "cluster command",
|
|
Subcommands: []*cli.Command{
|
|
NewClusterCreateCmd(appCtx),
|
|
NewClusterDeleteCmd(appCtx),
|
|
NewClusterListCmd(appCtx),
|
|
},
|
|
}
|
|
}
|