From a7719688a24c1e282ac878ba231a30bb5c6a27a0 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Sun, 9 Mar 2025 17:18:00 +0000 Subject: [PATCH] feat: Add endpoint country --- app/api/endpoints/country.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/api/endpoints/country.py diff --git a/app/api/endpoints/country.py b/app/api/endpoints/country.py new file mode 100644 index 0000000..a7c2b60 --- /dev/null +++ b/app/api/endpoints/country.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}