mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-05-03 18:24:55 +00:00
f395031366
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
19 lines
581 B
Python
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",
|
|
]
|