1
0
mirror of https://github.com/rancher/norman.git synced 2025-08-18 23:36:53 +00:00
norman/main.go
2017-10-11 22:48:07 -07:00

24 lines
335 B
Go

package main
import (
"os"
"github.com/Sirupsen/logrus"
"github.com/urfave/cli"
)
var VERSION = "v0.0.0-dev"
func main() {
app := cli.NewApp()
app.Name = "norman"
app.Version = VERSION
app.Usage = "You need help!"
app.Action = func(c *cli.Context) error {
logrus.Info("I'm a turkey")
return nil
}
app.Run(os.Args)
}