From a571e0b684a73876f34fed4a7a7745e9ecd71017 Mon Sep 17 00:00:00 2001 From: akshay Date: Sat, 14 Feb 2026 14:01:08 +0530 Subject: [PATCH] return line typo missing --- app/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1750389..c96266e 100644 --- a/app/main.py +++ b/app/main.py @@ -78,9 +78,11 @@ 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" + return "This is part of backend" @app.get("/tasks") def list_tasks(limit: int = 100):