10 lines
322 B
Python
10 lines
322 B
Python
"""
|
|
FILE: app/core/derive_edges.py
|
|
DESCRIPTION: Facade für das neue graph Package.
|
|
WP-14: Modularisierung abgeschlossen.
|
|
VERSION: 2.2.0
|
|
"""
|
|
from .graph.graph_derive_edges import build_edges_for_note
|
|
from .graph.graph_utils import PROVENANCE_PRIORITY
|
|
|
|
__all__ = ["build_edges_for_note", "PROVENANCE_PRIORITY"] |