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