2013-07-20 22:50:13 +00:00
|
|
|
// Package cli provides a minimal framework for creating and organizing command line
|
|
|
|
// Go applications. cli is designed to be easy to understand and write, the most simple
|
|
|
|
// cli application can be written as follows:
|
|
|
|
// func main() {
|
2016-06-22 16:47:57 +00:00
|
|
|
// (&cli.App{}).Run(os.Args)
|
2013-07-20 22:50:13 +00:00
|
|
|
// }
|
|
|
|
//
|
|
|
|
// Of course this application does not do much, so let's make this an actual application:
|
|
|
|
// func main() {
|
2016-06-22 16:47:57 +00:00
|
|
|
// app := &cli.App{
|
|
|
|
// Name: "greet",
|
|
|
|
// Usage: "say a greeting",
|
|
|
|
// Action: func(c *cli.Context) error {
|
2017-08-14 13:33:47 +00:00
|
|
|
// fmt.Println("Greetings")
|
|
|
|
// return nil
|
2016-06-22 16:47:57 +00:00
|
|
|
// },
|
|
|
|
// }
|
2013-07-20 22:50:13 +00:00
|
|
|
//
|
|
|
|
// app.Run(os.Args)
|
|
|
|
// }
|
2013-07-13 20:07:14 +00:00
|
|
|
package cli
|
2016-06-23 04:56:44 +00:00
|
|
|
|
2016-07-11 10:01:08 +00:00
|
|
|
//go:generate python ./generate-flag-types cli -i flag-types.json -o flag_generated.go
|