From ef92f546d7969fb3c890d30228a385e812b941b9 Mon Sep 17 00:00:00 2001 From: Nitin Singh Date: Wed, 28 Jan 2026 12:45:56 +0530 Subject: [PATCH] apirouteadded --- app/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index e7ef95f..5e98949 100644 --- a/app/main.py +++ b/app/main.py @@ -66,7 +66,9 @@ def health_check(): "environment": settings.ENVIRONMENT, "firebase_project": settings.get_firebase_config()["project_id"] } - +@app.get("/about", response_class = None) +def about(): + return "This is all about backend" # Task CRUD endpoints @app.post("/tasks") def create_task(task: TaskCreate):