feat: Update endpoint /login

This commit is contained in:
Backend IM Bot 2025-03-08 17:54:17 +00:00
parent 114319d40c
commit 6e94c9fd35

View File

@ -4,4 +4,4 @@ router = APIRouter()
@router.post("/login") @router.post("/login")
async def login(username: str, password: str): async def login(username: str, password: str):
return {"message": "User signed in successfully", "username": username} return {"message": "User logged in successfully", "username": username}