summaryrefslogtreecommitdiff
path: root/CAO/Status.py
diff options
context:
space:
mode:
Diffstat (limited to 'CAO/Status.py')
-rw-r--r--CAO/Status.py7
1 files changed, 7 insertions, 0 deletions
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}})