mirror of
https://github.com/rancher/k3k.git
synced 2026-08-19 04:16:16 +00:00
17 lines
239 B
Go
17 lines
239 B
Go
package cluster
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func NewCommand() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "cluster",
|
|
Usage: "cluster command",
|
|
Subcommands: []*cli.Command{
|
|
NewCreateCmd(),
|
|
NewDeleteCmd(),
|
|
},
|
|
}
|
|
}
|