diff --git a/README.md b/README.md index d24c74b..2698540 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # NxtDo Backend -A FastAPI backend application with Firebase authentication. +This project is a FastAPI backend application with Firebase authentication. ## Project Structure diff --git a/app/main.py b/app/main.py index 1750389..a26d6bc 100644 --- a/app/main.py +++ b/app/main.py @@ -79,8 +79,9 @@ def create_task(task: TaskCreate): raise HTTPException(status_code=500, detail=str(e)) @app.get("/about",response_class=PlainTextResponse) + def about_backend(): - return "This is all backend" + return "This is all about the backend" @app.get("/tasks") def list_tasks(limit: int = 100):