MicroFish/backend/app/graph/__init__.py

9 lines
156 B
Python

"""
Graph backend abstractions.
"""
from .base import GraphBackend
from .factory import get_graph_backend
__all__ = ["GraphBackend", "get_graph_backend"]