From 271968566b3b9539665943e80ebe3c0958f62100 Mon Sep 17 00:00:00 2001 From: Om Kshirsagar Date: Sun, 15 Feb 2026 05:14:27 +0530 Subject: [PATCH 1/2] Removed api /about --- app/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 1750389..005af97 100644 --- a/app/main.py +++ b/app/main.py @@ -78,9 +78,7 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) -@app.get("/about",response_class=PlainTextResponse) -def about_backend(): - return "This is all backend" + @app.get("/tasks") def list_tasks(limit: int = 100): From 4d89d97e09d64664296db3f41cc5ff43f36aea72 Mon Sep 17 00:00:00 2001 From: Om Kshirsagar Date: Sun, 15 Feb 2026 05:18:06 +0530 Subject: [PATCH 2/2] Readded api /about --- app/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 005af97..1750389 100644 --- a/app/main.py +++ b/app/main.py @@ -78,7 +78,9 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) - +@app.get("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" @app.get("/tasks") def list_tasks(limit: int = 100):