mirror of
https://github.com/rancher/k3k.git
synced 2026-03-05 19:22:12 +00:00
16 lines
201 B
Go
16 lines
201 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rancher/k3k/cli/cmds"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
app := cmds.NewApp()
|
|
if err := app.Run(os.Args); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|