Spaces:
Sleeping
Sleeping
| """Thin compatibility shim over the capability-based module registry. | |
| Historically the pipeline lived here as a hardcoded sequence of module calls. | |
| It is now a registry (see ``module_registry``); this module keeps the original | |
| ``run_modules`` entry point so existing callers and tests are unaffected. | |
| """ | |
| from __future__ import annotations | |
| from module_registry import run_modules, run_registry | |
| __all__ = ["run_modules", "run_registry"] | |