from typing import Any import json def error(msg: str, code: int = 255) -> str: return json.dumps({'type': 'response', 'content': {'status': code, 'info': msg}}) def success(obj: Any) -> str: return json.dumps({'type': 'response', 'content': {'status': 0, 'result': obj}})