k3s/cmd/agent/main.go

23 lines
340 B
Go
Raw Normal View History

2019-01-09 16:54:15 +00:00
package main
import (
"os"
"github.com/rancher/k3s/pkg/cli/agent"
"github.com/rancher/k3s/pkg/cli/cmds"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
func main() {
app := cmds.NewApp()
app.Commands = []cli.Command{
cmds.NewAgentCommand(agent.Run),
}
err := app.Run(os.Args)
if err != nil {
logrus.Fatal(err)
}
}