Files
k3k/cli/cmds/cluster.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(),
},
}
}