(operation)
| 67 | |
| 68 | |
| 69 | async def _run(operation): |
| 70 | try: |
| 71 | result = await run_maybe_async(operation) |
| 72 | return ok(result) |
| 73 | except ChatServiceError as exc: |
| 74 | return error(str(exc)) |
| 75 | |
| 76 | |
| 77 | def _file_response(file_path: str, mimetype: str | None): |
no test coverage detected