dsmultimedika's picture
Improve the code bot development
d57efd6
raw
history blame
329 Bytes
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