Files
k3k/cli/cmds/cluster/cluster.go
T
2025-02-05 23:54:40 +01:00

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(),
},
}
}