VORKOUT-18 #2

Open
ivan.dev wants to merge 13 commits from VORKOUT-18 into main
30 changed files with 738 additions and 87 deletions
Showing only changes of commit 4367d261e7 - Show all commits

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]: