summaryrefslogtreecommitdiff
path: root/lib/listcommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/listcommands.py')
-rw-r--r--lib/listcommands.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/listcommands.py b/lib/listcommands.py
index 3f4f3ad..d8c7ad9 100644
--- a/lib/listcommands.py
+++ b/lib/listcommands.py
@@ -9,14 +9,18 @@ class ListCommands(object):
info = {
'info' : 'this is stout',
'set' : ['set a value', 3],
- 'get' : ['return a value', 3]
+ 'get' : ['return a value', 3],
+ 'add' : 'new TODO',
+ 'del' : ['del TODO', 2]
}
commands = {
'quit' : None,
'clear' : None,
'set' : ['user'],
- 'get' : ['i', ['user', 'host', 'port', 'unix_socket_path', 'db']]
+ 'get' : ['i', ['user', 'host', 'port', 'unix_socket_path', 'db'], 'todo', 'ctodo'],
+ 'add' : None,
+ 'del' : None,
}
@staticmethod