From 021ccb3151c0716d1f95e8d5082bd5e05dc3f563 Mon Sep 17 00:00:00 2001 From: niat-web Date: Sun, 8 Feb 2026 23:33:59 +0530 Subject: [PATCH] Updated backend of api --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1750389..edaac73 100644 --- a/app/main.py +++ b/app/main.py @@ -80,7 +80,7 @@ def create_task(task: TaskCreate): @app.get("/about",response_class=PlainTextResponse) def about_backend(): - return "This is all backend" + return "This is backend implementation" @app.get("/tasks") def list_tasks(limit: int = 100):