Files
dify/api/dify_graph/repositories/__init__.py

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