Revert godoc changes
This commit is contained in:
parent
0ef23521c5
commit
2e8c0e90fa
@ -5,24 +5,24 @@ line Go applications. cli is designed to be easy to understand and write,
|
|||||||
the most simple cli application can be written as follows:
|
the most simple cli application can be written as follows:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
(&cli.App{}).Run(os.Args)
|
(&cli.App{}).Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
Of course this application does not do much, so let's make this an actual
|
Of course this application does not do much, so let's make this an actual
|
||||||
application:
|
application:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := &cli.App{
|
app := &cli.App{
|
||||||
Name: "greet",
|
Name: "greet",
|
||||||
Usage: "say a greeting",
|
Usage: "say a greeting",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
fmt.Println("Greetings")
|
fmt.Println("Greetings")
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Run(os.Args)
|
app.Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
VARIABLES
|
VARIABLES
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user