From c5cb465aeb080a233002e3e64ab69c5270db1d77 Mon Sep 17 00:00:00 2001 From: Shubham Gaingade Date: Mon, 2 Mar 2026 17:33:50 +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..63bc467 100644 --- a/app/main.py +++ b/app/main.py @@ -78,7 +78,7 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) -@app.get("/about",response_class=PlainTextResponse) +@app.get("/about", response_class=PlainTextResponse) def about_backend(): return "This is all backend"