feat: Update endpoint /login

This commit is contained in:
Backend IM Bot 2025-03-07 19:30:15 +00:00
parent b92e35db55
commit b9f4d7050f

View File

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