mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-28 22:29:32 +00:00
16 lines
278 B
Go
16 lines
278 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func NewCRICTL(action func(*cli.Context) error) cli.Command {
|
|
return cli.Command{
|
|
Name: "crictl",
|
|
Usage: "Run crictl",
|
|
SkipFlagParsing: true,
|
|
SkipArgReorder: true,
|
|
Action: action,
|
|
}
|
|
}
|