mirror of
https://github.com/hoshikawa2/compass_backoffice.git
synced 2026-07-09 22:04:20 +00:00
14 lines
575 B
Python
14 lines
575 B
Python
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"]
|