2025-03-06 00:35:32 +01:00

8 lines
205 B
Python

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