mirror of
https://github.com/langgenius/dify.git
synced 2026-03-06 08:06:37 +08:00
15 lines
392 B
Python
15 lines
392 B
Python
"""
|
|
Repository interfaces for data access.
|
|
|
|
This package contains repository interfaces that define the contract
|
|
for accessing and manipulating data, regardless of the underlying
|
|
storage mechanism.
|
|
"""
|
|
|
|
from dify_graph.repositories.workflow_node_execution_repository import OrderConfig, WorkflowNodeExecutionRepository
|
|
|
|
__all__ = [
|
|
"OrderConfig",
|
|
"WorkflowNodeExecutionRepository",
|
|
]
|