"""结果查询 API""" from fastapi import APIRouter router = APIRouter() @router.get("/") async def results_info(): return {"message": "Results endpoint"}