File size: 333 Bytes
9002555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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