From 558240ae368850b2ee94e739e9944f7fccedf0fd Mon Sep 17 00:00:00 2001 From: jaswanth Date: Sat, 14 Feb 2026 16:00:34 +0530 Subject: [PATCH 1/2] added api router --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1750389..7ef4308 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." @app.get("/tasks") def list_tasks(limit: int = 100): From bf5e4e590ed601b436981b405f34d8e5e75dc6b3 Mon Sep 17 00:00:00 2001 From: jaswanth Date: Sat, 14 Feb 2026 16:09:32 +0530 Subject: [PATCH 2/2] added backend router --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 7ef4308..87ecc6d 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.." @app.get("/tasks") def list_tasks(limit: int = 100):