From ca86e91e5129aa26de1e0500fa5a53a9cf69ff4a Mon Sep 17 00:00:00 2001 From: dharavthjayanth Date: Wed, 28 Jan 2026 16:40:26 +0530 Subject: [PATCH] added api-backend --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index e7ef95f..1750389 100644 --- a/app/main.py +++ b/app/main.py @@ -78,6 +78,10 @@ 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): """List all tasks"""