k3s/pkg/cli/cmds/check-config.go
2020-07-10 10:34:00 -07:00

15 lines
285 B
Go

package cmds
import (
"github.com/rancher/spur/cli"
)
func NewCheckConfigCommand(action func(*cli.Context) error) *cli.Command {
return &cli.Command{
Name: "check-config",
Usage: "Run config check",
SkipFlagParsing: true,
Action: action,
}
}