feat: Delete endpoint /login

This commit is contained in:
Backend IM Bot 2025-03-06 07:02:37 -08:00
parent b92e35db55
commit 0eeb782136

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}