feat: name id node

This commit is contained in:
TheNoxium
2025-09-12 17:37:29 +05:00
parent 4942380157
commit 4367d261e7
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ class VorkNodeStart(VorkNode):
@property
def id(self) -> str:
return "node_start"
return "START"
@classmethod
def form(cls) -> StartNodeCoreSchema:

View File

@@ -13,7 +13,7 @@ class VorkNodeIf(VorkNode):
@property
def id(self) -> str:
return "node_if"
return "IF"
@classmethod
def form(cls) -> IfNodeDescriptor:

View File

@@ -12,7 +12,7 @@ class VorkNodeListen(VorkNode):
@property
def id(self) -> str:
return "node_listen"
return "LISTEN"
@classmethod
def form(cls) -> Dict[str, Any]: