feat: Add endpoint something-else-new

This commit is contained in:
Backend IM Bot 2025-03-09 17:08:01 +00:00
parent c28ae45150
commit 3e9344bbbf

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}