feat: Delete endpoint /login

This commit is contained in:
Backend IM Bot 2025-03-10 19:55:11 +00:00
parent 6c320dd7d4
commit c45fad58a4

View File

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