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