Example #1
0
func main() {
	app := cli.NewApp()
	err := app.Run(os.Args)
	if err != nil {
		os.Exit(1)
	}
}
Example #2
0
func main() {
	app := cli.NewApp()
	app.Run(os.Args)
}