From 4f92d19cbb872d817966f0055db3b6b6b35f58c2 Mon Sep 17 00:00:00 2001 From: Summer Mousa Date: Wed, 16 Apr 2014 13:09:14 -0500 Subject: [PATCH] Updated readme --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 0c12ce2..373d66d 100644 --- a/README.md +++ b/README.md @@ -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()) + }, + }, + }, + }, } ... ```