From c28ae4515097dee9626c5ec8665c26166286275e Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Sun, 9 Mar 2025 17:07:18 +0000 Subject: [PATCH] feat: Add endpoint another-oneeee --- app/api/endpoints/another-oneeee.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/api/endpoints/another-oneeee.py diff --git a/app/api/endpoints/another-oneeee.py b/app/api/endpoints/another-oneeee.py new file mode 100644 index 0000000..a7c2b60 --- /dev/null +++ b/app/api/endpoints/another-oneeee.py @@ -0,0 +1,9 @@ +from fastapi import APIRouter + +router = APIRouter() + +@router.post("/login") +something like this I guess; +another edited response +async def login(username: str, password: str): + return {"message": "User logged in successfully", "username": username}