summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-15 14:27:27 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-15 14:27:27 +0200
commitb9f1c57fdd6097e776235c105c58c29f84399523 (patch)
tree5213d53f6f41f0bae10f13b04964ad201883696c /server
parente49caeec12b36742044d1e306de382f54995576c (diff)
Add handlers for python_{push,pull} requests
Will be reimplemented asynchronously.
Diffstat (limited to 'server')
-rw-r--r--server/handlers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/handlers.py b/server/handlers.py
index e9cf7c8..fb50ff4 100644
--- a/server/handlers.py
+++ b/server/handlers.py
@@ -197,6 +197,8 @@ incoming_handlers = {
'logout': None,
'activity': Activity(),
'query': Query(),
+ 'python_push': PythonPush(),
+ 'python_pull': PythonPull(),
'hint': Hint(),
'test': Test()
}