Spaces:
Sleeping
Sleeping
File size: 329 Bytes
9002555 d57efd6 9002555 d57efd6 9002555 d57efd6 9002555 d57efd6 9002555 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from fastapi import APIRouter
router = APIRouter(tags=["Trial"])
@router.get("/trials")
async def get_trial_data():
pass
@router.post("/trials")
async def add_trial_data():
pass
@router.put("/trials/{id}")
async def update_trial_data():
pass
@router.delete("/trials/{id}")
async def remove_trial_data():
pass |