From 544c42a09193046203e017f8ab59e109d18e7f13 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Thu, 13 Mar 2025 23:50:50 +0000 Subject: [PATCH] feat: Add GET endpoint another --- app/api/endpoints/another.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/api/endpoints/another.py diff --git a/app/api/endpoints/another.py b/app/api/endpoints/another.py new file mode 100644 index 0000000..6ed4dac --- /dev/null +++ b/app/api/endpoints/another.py @@ -0,0 +1,7 @@ +from fastapi import APIRouter + +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