From 5cbcf24950e15dbf95879e80089e07e07a909254 Mon Sep 17 00:00:00 2001 From: Revanth2835 Date: Sun, 8 Feb 2026 16:24:44 +0530 Subject: [PATCH] Added API /why API --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index 1750389..70cc8a4 100644 --- a/app/main.py +++ b/app/main.py @@ -82,6 +82,10 @@ def create_task(task: TaskCreate): def about_backend(): return "This is all backend" +@app.get("/why",response_class=PlainTextResponse) +def about_backend(): + return "This is written because i'm learning Open Source contribution." + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks"""