diff --git a/app/main.py b/app/main.py index 1750389..de386d2 100644 --- a/app/main.py +++ b/app/main.py @@ -80,8 +80,11 @@ def create_task(task: TaskCreate): @app.get("/about",response_class=PlainTextResponse) def about_backend(): + """List is going to be here in the future""" + """A simple endpoint to test backend connectivity""" return "This is all backend" + @app.get("/tasks") def list_tasks(limit: int = 100): """List all tasks"""