From 0fb08748e5285e5d4adc6135eec8889887a63299 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sun, 14 Jun 2015 22:31:48 +0100 Subject: use a python package instead of just modules The package is contained in the CAO/ folder. server.py is still at the root of the repository though. Signed-off-by: Olivier Gayot --- CAO/Status.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CAO/Status.py (limited to 'CAO/Status.py') diff --git a/CAO/Status.py b/CAO/Status.py new file mode 100644 index 0000000..782a0b4 --- /dev/null +++ b/CAO/Status.py @@ -0,0 +1,7 @@ +import json + +def cao_error(msg, code=255): + return json.dumps({'type': 'response', 'content': {'status': code, 'info': msg}}) + +def cao_success(obj): + return json.dumps({'type': 'response', 'content': {'status': 0, 'result': obj}}) -- cgit v1.2.3