Updated readme

main
Summer Mousa 11 years ago
parent 705994c2c6
commit 4f92d19cbb

@ -187,6 +187,27 @@ app.Commands = []cli.Command{
println("completed task: ", c.Args().First())
},
},
{
Name: "template",
ShortName: "r",
Usage: "options for task templates",
Subcommands: []cli.Command{
{
Name: "add",
Usage: "add a new template",
Action: func(c *cli.Context) {
println("new task template: ", c.Args().First())
},
},
{
Name: "remove",
Usage: "remove an existing template",
Action: func(c *cli.Context) {
println("removed task template: ", c.Args().First())
},
},
},
},
}
...
```

Loading…
Cancel
Save