k3s/pkg/cli/cmds/ctr.go

15 lines
256 B
Go
Raw Permalink Normal View History

2019-02-07 23:08:10 -05:00
package cmds
import (
"github.com/urfave/cli/v2"
2019-02-07 23:08:10 -05:00
)
func NewCtrCommand(action func(*cli.Context) error) *cli.Command {
return &cli.Command{
2019-02-07 23:08:10 -05:00
Name: "ctr",
Usage: "Run ctr",
SkipFlagParsing: true,
Action: action,
}
}