From d50d09de4337501912f942af4ef5b467c4ece8ee Mon Sep 17 00:00:00 2001 From: Bhanu Date: Sat, 14 Feb 2026 23:56:19 +0530 Subject: [PATCH] added api backend --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1750389..a9cb683 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 all backend done" @app.get("/tasks") def list_tasks(limit: int = 100):