diff --git a/app/main.py b/app/main.py index e7ef95f..1750389 100644 --- a/app/main.py +++ b/app/main.py @@ -78,6 +78,10 @@ def create_task(task: TaskCreate): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) +@app.get("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks"""