TraceStudio-dist/server/app/core/execution_context.py
2026-01-13 16:41:31 +08:00

12 lines
430 B
Python

"""ExecutionContext compatibility shim.
To avoid having two separately-defined ExecutionContext classes in the
codebase, this module re-exports the single canonical definition from
``workflow_executor.py``. Importing ``ExecutionContext`` from here keeps
older imports working while centralizing the implementation.
"""
from .workflow_executor import ExecutionContext # re-export canonical class
__all__ = ["ExecutionContext"]