summaryrefslogtreecommitdiff
path: root/swiftstory/Status.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2018-03-09 13:38:22 +0100
committerOlivier Gayot <olivier.gayot@sigexec.com>2018-03-09 13:38:22 +0100
commit493b116f73ec3912ca7af3d6ece3434279cbcfb5 (patch)
treeb6955491311fb0d810e9de9a7dd9b8059d04a10c /swiftstory/Status.py
parent735bc5af0929392f27386aa3fa0c26d39f300672 (diff)
renamed the project SwiftStory
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/Status.py')
-rw-r--r--swiftstory/Status.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/swiftstory/Status.py b/swiftstory/Status.py
new file mode 100644
index 0000000..4e8c84d
--- /dev/null
+++ b/swiftstory/Status.py
@@ -0,0 +1,7 @@
+import json
+
+def error(msg, code=255):
+ return json.dumps({'type': 'response', 'content': {'status': code, 'info': msg}})
+
+def success(obj):
+ return json.dumps({'type': 'response', 'content': {'status': 0, 'result': obj}})