diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-06-04 05:54:16 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-06-04 05:54:16 +0100 |
commit | 0cae8115a93589e37943590db45967beec841a07 (patch) | |
tree | ad5bbecff01e42362d3670b90000fa77e9d38cc9 /server.py | |
parent | 7d191b337b3114ceaa2ea69b538d3cd4f83bc094 (diff) |
added a system of notification
what the client will receive will look like:
{'type': TYPE, 'content': CONTENT}
TYPE will be either 'notification' or 'response'
CONTENT will be the content of the notification or the response
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'server.py')
-rwxr-xr-x | server.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ import json game_manager = CAO_GameManager.CAO_GameManager() def new_client_handler(client, server): - client['cao_client'] = CAO_Client.CAO_Client(game_manager) + client['cao_client'] = CAO_Client.CAO_Client(server, client, game_manager) def client_left_handler(client, server): pass |