From c6385cdf5bb64c3b1cf008bc38a172ca279f84ee Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Fri, 7 Mar 2025 23:00:45 +0000 Subject: [PATCH] feat: Update endpoint /login --- app/api/endpoints/login.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/api/endpoints/login.py b/app/api/endpoints/login.py index 0e5e5f9..5980c29 100644 --- a/app/api/endpoints/login.py +++ b/app/api/endpoints/login.py @@ -5,4 +5,6 @@ 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 logged in successfully", "username": username} + +#here you can add other things \ No newline at end of file