k3s/pkg/cli/cmds/ctr.go
Darren Shepherd 793ac4fb89 Add crictl
2019-02-07 21:45:31 -07:00

16 lines
276 B
Go

package cmds
import (
"github.com/urfave/cli"
)
func NewCtrCommand(action func(*cli.Context) error) cli.Command {
return cli.Command{
Name: "ctr",
Usage: "Run ctr",
SkipFlagParsing: true,
SkipArgReorder: true,
Action: action,
}
}