2025-03-08 17:53:42 +00:00

7 lines
198 B
Python

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