MicroFish/backend/app/adapters/graph/__init__.py

7 lines
189 B
Python

"""Graph provider adapters."""
from .base import GraphProvider, GraphTriple
from .factory import create_graph_provider
__all__ = ["GraphProvider", "GraphTriple", "create_graph_provider"]