1// Package cli provides a minimal framework for creating and organizing command line 2// Go applications. cli is designed to be easy to understand and write, the most simple 3// cli application can be written as follows: 4// func main() { 5// (&cli.App{}).Run(os.Args) 6// } 7// 8// Of course this application does not do much, so let's make this an actual application: 9// func main() { 10// app := &cli.App{ 11// Name: "greet", 12// Usage: "say a greeting", 13// Action: func(c *cli.Context) error { 14// fmt.Println("Greetings") 15// return nil 16// }, 17// } 18// 19// app.Run(os.Args) 20// } 21package cli 22 23//go:generate go run flag-gen/main.go flag-gen/assets_vfsdata.go 24