From afdb3c0b28715b3d9a0982e4e0504a0cbcf11e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 14 Sep 2015 14:49:54 +0200 Subject: Reimplemented communication with the client side. * Implemented a node web server supporting asynchronous websocket and long-polling communication with clients. * Implemented TCP communication between python middleware and node web server. --- wsgi_server.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'wsgi_server.py') diff --git a/wsgi_server.py b/wsgi_server.py index 324f338..f754b14 100644 --- a/wsgi_server.py +++ b/wsgi_server.py @@ -1,6 +1,9 @@ #!/usr/bin/python3 # coding=utf-8 +# TODO: this module is deprecated, remove it +# TODO: all new development should occur in server/handlers.py instead + import falcon import json import client -- cgit v1.2.1