feat: node if, node start, node link

This commit is contained in:
TheNoxium
2025-09-05 19:52:35 +07:00
parent 96ddb52582
commit a5a52a64ef
23 changed files with 666 additions and 39 deletions

41
model_nodes/__init__.py Normal file
View File

@@ -0,0 +1,41 @@
# Экспорты для моделей узла listen
# from .node_listen_models import (
# ListenNodeData,
# ListenNodeLinks,
# ListenNodePSNodeCore,
# ListenNodeSettingsDataCore
# )
# Экспорты для моделей узла if
from .node_if_models import (
IfNodeData,
IfNodeLinks,
IfNodeCoreSchema,
IfNodeCoreSchemaData,
IfNodeDescriptor
)
# Экспорты для моделей связей между узлами
from .node_link_models import (
VorkNodeLinkData,
VorkNodeLinkSchema
)
__all__ = [
# Listen node models
# "ListenNodeData",
# "ListenNodeLinks",
# "ListenNodePSNodeCore",
# "ListenNodeSettingsDataCore",
# If node models
"IfNodeData",
"IfNodeLinks",
"IfNodeCoreSchema",
"IfNodeCoreSchemaData",
"IfNodeDescriptor",
# Node link models
"VorkNodeLinkData",
"VorkNodeLinkSchema"
]