dsmultimedika's picture
Build Application
9002555
raw
history blame
333 Bytes
from fastapi import APIRouter
router = APIRouter(tags=["User"])
@router.post("/login")
async def get_data_roles():
pass
@router.post("/register")
async def register_user():
pass
@router.post("/forgot_password")
async def forget_password():
pass
@router.post("/change_password")
async def change_password():
pass