Initial commit

This commit is contained in:
2025-07-11 13:52:19 +00:00
commit e0c489f625
362 changed files with 27286 additions and 0 deletions
@@ -0,0 +1,18 @@
# flake8: noqa
from .basenode import BaseNode
from .baserelationship import BaseRelationship
from .graphconnection import GraphConnection, init_neontology
from .utils import auto_constrain
__all__ = [
# BaseNode
"BaseNode",
# BaseRelationship
"BaseRelationship",
# GraphConnection
"init_neontology",
"GraphConnection",
# utils
"auto_constrain",
]