mirror of
https://github.com/rancher/norman.git
synced 2025-09-01 23:36:58 +00:00
Initial Commit
This commit is contained in:
23
main.go
Normal file
23
main.go
Normal file
@@ -0,0 +1,23 @@
|
||||
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)
|
||||
}
|
Reference in New Issue
Block a user