TIDE / src /module_runner.py
hiasgnpsadgd's picture
Deploy TIDE Docker backend
33d7314 verified
Raw
History Blame Contribute Delete
440 Bytes
"""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"]