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