diff --git a/app/main.py b/app/main.py index 1750389..c0b7dca 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("/about",response_class=PlainTextResponse) +def about_backend(): + return "This is all backend" + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks"""