mirror of
https://github.com/rancher/k3k.git
synced 2026-03-26 05:17:04 +00:00
* added clusterset create command, small refactor with appcontext * added clusterset delete * updated docs
17 lines
298 B
Go
17 lines
298 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func NewClusterSetCmd(appCtx *AppContext) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "clusterset",
|
|
Usage: "clusterset command",
|
|
Subcommands: []*cli.Command{
|
|
NewClusterSetCreateCmd(appCtx),
|
|
NewClusterSetDeleteCmd(appCtx),
|
|
},
|
|
}
|
|
}
|