Files
AutoMetabuilder/backend/autometabuilder/engine/__init__.py
T

19 lines
581 B
Python

"""
Workflow engine initialization and building.
This module contains the workflow engine setup components:
- workflow_config_loader: Load workflow configuration JSON
- workflow_context_builder: Build workflow runtime context
- workflow_engine_builder: Assemble workflow engine with dependencies
"""
from .workflow_config_loader import load_workflow_config
from .workflow_context_builder import build_workflow_context
from .workflow_engine_builder import build_workflow_engine
__all__ = [
"load_workflow_config",
"build_workflow_context",
"build_workflow_engine",
]