Delete app/api/endpoints/signin.py

This commit is contained in:
backend.im 2025-03-06 03:41:43 +00:00
parent 249215622b
commit b92e35db55

View File

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