ddd
Browse files
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 |
+
|