(x: int, y: int)
| 174 | ## Basic health check |
| 175 | @router.post("/divide") |
| 176 | async def divide(x: int, y: int): |
| 177 | from worker.tasks import divide |
| 178 | result = divide.delay(x, y) |
| 179 | return {"task_id": result.id} |
| 180 | |
| 181 | |
| 182 | ## Returns the status of the submitted Task |
nothing calls this directly
no outgoing calls
no test coverage detected