Files
bttoxin-pipeline/backend/app/api/v1/results.py

9 lines
162 B
Python

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