Files
mcma-backend/app/api/v1/upload.py
T
2026-06-06 13:00:01 +03:00

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: ...