Return the status of the submitted Task
(task_id: str)
| 182 | ## Returns the status of the submitted Task |
| 183 | @router.get("/task/{task_id}") |
| 184 | async def get_task_status(task_id: str): |
| 185 | """ |
| 186 | Return the status of the submitted Task |
| 187 | """ |
| 188 | return get_task_info(task_id) |
| 189 | |
| 190 | |
| 191 | ## Purge all tasks in the Celery queue |
nothing calls this directly
no test coverage detected