mirror of https://github.com/k3s-io/k3s.git
27 lines
443 B
Go
27 lines
443 B
Go
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/v2"
|
|
)
|
|
|
|
func main() {
|
|
app := cmds.NewApp()
|
|
app.Commands = []*cli.Command{
|
|
cmds.NewCompletionCommand(
|
|
completion.Bash,
|
|
completion.Zsh,
|
|
),
|
|
}
|
|
|
|
if err := app.Run(os.Args); err != nil && !errors.Is(err, context.Canceled) {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|