feat: Add endpoint country

This commit is contained in:
Backend IM Bot 2025-03-09 17:18:00 +00:00
parent 246bd071de
commit a7719688a2

View File

@ -0,0 +1,9 @@
from fastapi import APIRouter
router = APIRouter()
@router.post("/login")
something like this I guess;
another edited response
async def login(username: str, password: str):
return {"message": "User logged in successfully", "username": username}