diff --git a/backend/app/__pycache__/main.cpython-313.pyc b/backend/app/__pycache__/main.cpython-313.pyc index 5e79ec6..ea4d41c 100644 Binary files a/backend/app/__pycache__/main.cpython-313.pyc and b/backend/app/__pycache__/main.cpython-313.pyc differ diff --git a/backend/app/main.py b/backend/app/main.py index 8f6d351..469ca5d 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -271,6 +271,11 @@ async def shutdown_event(): async def health_check(): return {"status": "healthy", "version": "1.0.0"} +@app.get("/debug-test") +async def debug_test(): + print("🔥🔥🔥 DEBUG TEST ENDPOINT HIT 🔥🔥🔥") + return {"message": "If you see this, routing works"} + @app.get("/metrics") async def metrics():