TraceStudio-dev/server/app/core/execution_context.py

12 lines
430 B
Python
Raw Permalink Normal View History

"""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"]