feat: Update endpoint /get-user

This commit is contained in:
Backend IM Bot 2025-03-08 17:55:14 +00:00
parent d4cb63b9d8
commit 3ba0922a05

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}