mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
15 lines
330 B
Python
15 lines
330 B
Python
"""
|
|
Domain models for graph engine.
|
|
|
|
This package contains the core domain entities, value objects, and aggregates
|
|
that represent the business concepts of workflow graph execution.
|
|
"""
|
|
|
|
from .graph_execution import GraphExecution
|
|
from .node_execution import NodeExecution
|
|
|
|
__all__ = [
|
|
"GraphExecution",
|
|
"NodeExecution",
|
|
]
|