12 lines
199 B
Python
12 lines
199 B
Python
"""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: ...
|