hybridgroup.gobot/gobot/main.go

22 lines
378 B
Go

package main
import (
"os"
"github.com/codegangsta/cli"
"github.com/hybridgroup/gobot"
)
func main() {
app := cli.NewApp()
app.Name = "gobot"
app.Author = "The Gobot team"
app.Email = "https://github.com/hybridgroup/gobot"
app.Version = gobot.Version()
app.Usage = "Command Line Utility for Gobot"
app.Commands = []cli.Command{
Generate(),
}
app.Run(os.Args)
}