Spaces:
Sleeping
Sleeping
File size: 440 Bytes
33d7314 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """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"]
|