From 114319d40cf8f49cf22cf2707c82e295560f27cd Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Sat, 8 Mar 2025 17:53:42 +0000 Subject: [PATCH] feat: Update endpoint /login --- app/api/endpoints/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/endpoints/login.py b/app/api/endpoints/login.py index 6ed4dac..75db1b4 100644 --- a/app/api/endpoints/login.py +++ b/app/api/endpoints/login.py @@ -4,4 +4,4 @@ router = APIRouter() @router.post("/login") async def login(username: str, password: str): - return {"message": "User logged in successfully", "username": username} \ No newline at end of file + return {"message": "User signed in successfully", "username": username} \ No newline at end of file