From ac1eeac45bff92ec866868801bcf8dd6c2ebeeeb Mon Sep 17 00:00:00 2001 From: Hosein Date: Tue, 23 Dec 2025 12:31:07 +0330 Subject: [PATCH] doing tests --- main.py | 4 ++++ requirements.txt | 2 ++ 2 files changed, 6 insertions(+) diff --git a/main.py b/main.py index 5c154bc..4c9a215 100644 --- a/main.py +++ b/main.py @@ -8,6 +8,9 @@ app = FastAPI( version="1.0.0", ) +@app.post("/api/echo") +async def foo(payload: dict): + return {"received_payload": payload} @app.get("/api/data") def get_sample_data(): @@ -73,6 +76,7 @@ def read_root(): align-items: center; padding: 1rem 2rem; gap: 2rem; + background-color: blue; } .logo { diff --git a/requirements.txt b/requirements.txt index 97dc7cd..4e40242 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,4 @@ fastapi uvicorn +pyTelegramBotAPI +psycopg2-binary \ No newline at end of file