diff --git a/backend/main.py b/backend/main.py index 95451b3..09d9307 100644 --- a/backend/main.py +++ b/backend/main.py @@ -29,6 +29,11 @@ async def shutdown_event(): pass +@app.get("/") +def read_root(): + return {"Hello": "World"} + + # Registering the startup and shutdown events app.router.on_startup.append(startup_event) app.router.on_shutdown.append(shutdown_event)