Files
compass_backoffice/app/workflows/backoffice_native_runtime.py
2026-06-13 15:40:44 -03:00

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