from app import app
for route in app.routes:
    if hasattr(route, "methods") and hasattr(route, "path"):
        methods = ", ".join(route.methods - {"OPTIONS"})
        print(f"- **{methods}** `{route.path}`")
