added test endpoint
This commit is contained in:
parent
58054ac813
commit
e2bc456539
2 changed files with 5 additions and 0 deletions
Binary file not shown.
|
|
@ -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():
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue