added test endpoint

This commit is contained in:
michael 2025-10-08 18:14:32 -05:00
parent 58054ac813
commit e2bc456539
2 changed files with 5 additions and 0 deletions

View file

@ -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():