(self, endpoint: str, func: Callable[[Dict[str, Any]], Any])
| 48 | return {"code": ErrorCode.UNKNOWN_ERROR, "data": data, "message": str(e)} |
| 49 | |
| 50 | def register(self, endpoint: str, func: Callable[[Dict[str, Any]], Any]): |
| 51 | self._endpoint_map[endpoint] = func |
no outgoing calls
no test coverage detected