pytrace/server_old/app/core/execution_context.py
Boshuang Zhao fb8458011a upload
2026-01-15 21:58:30 +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"]