dsmultimedika's picture
Build Application
9002555
raw
history blame
326 Bytes
from fastapi import APIRouter
router = APIRouter(tags=["Roles"])
@router.get("/roles")
async def get_data_roles():
pass
@router.post("/roles")
async def add_data_roles():
pass
@router.put("/roles/{id}")
async def update_data_roles():
pass
@router.delete("/roles/{id}")
async def remove_data_roles():
pass