mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
19 lines
253 B
Go
19 lines
253 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
app.Name = "gobot"
|
|
app.Version = "0.1"
|
|
app.Usage = "Command Line Utility for Gobot"
|
|
app.Commands = []cli.Command{
|
|
Generate(),
|
|
}
|
|
app.Run(os.Args)
|
|
}
|