feat: node if, node start, node link
This commit is contained in:
41
model_nodes/__init__.py
Normal file
41
model_nodes/__init__.py
Normal 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"
|
||||
]
|
Reference in New Issue
Block a user