blob: 4e8c84df35f981523e105dd49f006b023683e456 (
plain)
1
2
3
4
5
6
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}})
|