diff options
Diffstat (limited to 'CAO/Status.py')
-rw-r--r-- | CAO/Status.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/CAO/Status.py b/CAO/Status.py deleted file mode 100644 index 782a0b4..0000000 --- a/CAO/Status.py +++ /dev/null @@ -1,7 +0,0 @@ -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}}) |