(operation)
| 75 | |
| 76 | |
| 77 | async def _run(operation) -> JSONResponse: |
| 78 | try: |
| 79 | result = await run_maybe_async(operation) |
| 80 | return _service_response(result) |
| 81 | except UpdateServiceError as exc: |
| 82 | return _service_error(exc) |
| 83 | |
| 84 | |
| 85 | @router.get("/updates/check") |
no test coverage detected