s/start/create/ for create command.

This commit is contained in:
Steven Edwards 2019-01-13 05:59:28 -05:00
parent 496f5ba93c
commit a88c1fbb43
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ func main() {
app.Version("v version", Version)
app.Command("start s", "start a new task", start(path))
app.Command("init", "initialize the sqlite database", initialize(path))
app.Command("create c", "create a new task without starting", start(path))
app.Command("create c", "create a new task without starting", create(path))
app.Command("list l", "list historical tasks", list(path))
app.Command("delete d", "delete a stored task", _delete(path))
app.Command("status st", "output the current status", _status(path))