"""文件上传 API""" from fastapi import APIRouter router = APIRouter() @router.get("/") async def upload_info(): return {"message": "Upload endpoint"}