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"""