router.post("/purge-queue", tags=["Queue Management"], description="Purge all tasks in the Celery queue", summary="Purge all tasks in the Celery queue")
| 1 | from fastapi import APIRouter, Query, Depends |
| 2 | from fastapi import Depends, HTTPException, status, APIRouter |
| 3 | from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm |
| 4 | from jose import JWTError, jwt |
nothing calls this directly
no outgoing calls
no test coverage detected