mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 18:49:33 +00:00
15 lines
259 B
Go
15 lines
259 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/rancher/spur/cli"
|
|
)
|
|
|
|
func NewCtrCommand(action func(*cli.Context) error) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "ctr",
|
|
Usage: "Run ctr",
|
|
SkipFlagParsing: true,
|
|
Action: action,
|
|
}
|
|
}
|