from __future__ import annotations # Compatibility shim. The framework-native name is BackofficeWorkflowExecutor. # Existing external imports from app.workflows.backoffice_native_runtime keep working, # but application code should import BackofficeWorkflowExecutor from # app.workflows.backoffice_workflow_executor. from app.workflows.backoffice_workflow_executor import BackofficeWorkflowExecutor # Deprecated alias for backward compatibility only. BackofficeNativeRuntime = BackofficeWorkflowExecutor __all__ = ["BackofficeWorkflowExecutor", "BackofficeNativeRuntime"]