feat: Add GET endpoint another

This commit is contained in:
Backend IM Bot 2025-03-13 23:50:50 +00:00
parent b92e35db55
commit 544c42a091

View File

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