From 0cae8115a93589e37943590db45967beec841a07 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Thu, 4 Jun 2015 05:54:16 +0100 Subject: 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 --- CAO_Status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CAO_Status.py') diff --git a/CAO_Status.py b/CAO_Status.py index 813fcf0..782a0b4 100644 --- a/CAO_Status.py +++ b/CAO_Status.py @@ -1,7 +1,7 @@ import json def cao_error(msg, code=255): - return json.dumps({'status': code, 'info': msg}) + return json.dumps({'type': 'response', 'content': {'status': code, 'info': msg}}) def cao_success(obj): - return json.dumps({'status': 0, 'result': obj}) + return json.dumps({'type': 'response', 'content': {'status': 0, 'result': obj}}) -- cgit v1.2.3