Initial commit: BtToxin Pipeline project structure

This commit is contained in:
2025-10-13 19:22:56 +08:00
commit c7744836e9
37 changed files with 1146 additions and 0 deletions

View File

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