From 4088b11b93f0babbdc699af57ecba8d5587c8f94 Mon Sep 17 00:00:00 2001 From: Deekshith P Date: Tue, 17 Feb 2026 11:09:16 +0530 Subject: [PATCH] added api for about --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index 1750389..865f420 100644 --- a/app/main.py +++ b/app/main.py @@ -68,6 +68,10 @@ def health_check(): } # Task CRUD endpoints +@app.post("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" + @app.post("/tasks") def create_task(task: TaskCreate): """Create a new task"""