Kaballas commited on
Commit
cd37e0c
·
1 Parent(s): 142e01f
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -12,3 +12,7 @@ app.mount("/sse", vector_app)
12
  async def root():
13
  return {"status": "ok"}
14
 
 
 
 
 
 
12
  async def root():
13
  return {"status": "ok"}
14
 
15
+ print("Registered routes:")
16
+ for route in app.routes:
17
+ print(route.path, route.methods)
18
+