mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
411 B
24 lines
411 B
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"os"
|
||
|
|
||
|
"github.com/k3s-io/k3s/pkg/cli/cmds"
|
||
|
"github.com/k3s-io/k3s/pkg/cli/completion"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
app := cmds.NewApp()
|
||
|
app.Commands = []cli.Command{
|
||
|
cmds.NewCompletionCommand(completion.Run),
|
||
|
}
|
||
|
|
||
|
if err := app.Run(os.Args); err != nil && !errors.Is(err, context.Canceled) {
|
||
|
logrus.Fatal(err)
|
||
|
}
|
||
|
}
|