"""Local file upload endpoint.""" from typing import Any from fastapi import APIRouter router = APIRouter(prefix="/upload", tags=["upload"]) @router.post("") async def upload_file() -> Any: ...