Commit
+1 -1 +/-1 browse
1 | diff --git a/main.go b/main.go |
2 | index 939caf5..971e7d5 100644 |
3 | --- a/main.go |
4 | +++ b/main.go |
5 | @@ -156,7 +156,7 @@ func main() { |
6 | app.Version("v version", Version) |
7 | app.Command("start s", "start a new task", start(path)) |
8 | app.Command("init", "initialize the sqlite database", initialize(path)) |
9 | - app.Command("create c", "create a new task without starting", start(path)) |
10 | + app.Command("create c", "create a new task without starting", create(path)) |
11 | app.Command("list l", "list historical tasks", list(path)) |
12 | app.Command("delete d", "delete a stored task", _delete(path)) |
13 | app.Command("status st", "output the current status", _status(path)) |