2025-03-11 15:22:45 +00:00

7 lines
201 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.post("/login")
async def login(username: str, password: str):
return {"message": "User is logged in successfully", "username": username}