Spaces:
Paused
Paused
| from python.helpers.api import ApiHandler, Request, Response | |
| from python.helpers import runtime | |
| class RFC(ApiHandler): | |
| def requires_csrf(cls) -> bool: | |
| return False | |
| def requires_auth(cls) -> bool: | |
| return False | |
| async def process(self, input: dict, request: Request) -> dict | Response: | |
| result = await runtime.handle_rfc(input) # type: ignore | |
| return result | |