From 32978b38af03156c23ab0d96a79fc79bf006b125 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 00:07:30 +0000 Subject: [PATCH] Update index endpoint message Add more descriptive message to the root endpoint to better describe the application. Co-Authored-By: Sam Fertig --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index da4f145..af73fa6 100644 --- a/app/main.py +++ b/app/main.py @@ -26,7 +26,7 @@ def get_db() -> Generator: @app.get("/") def index() -> Any: - return {"message": "Hello world!"} + return {"message": "Hello world! This is a simple FastAPI app."} @app.get("/posts", response_model=List[schemas.Post], tags=["posts"])