initial commit

This commit is contained in:
TheNoxium
2025-08-17 21:55:37 +03:00
commit 2223624063
17 changed files with 857 additions and 0 deletions

18
nodes/vork_node_switch.py Normal file
View File

@@ -0,0 +1,18 @@
from core import VorkNode
class VorkNodeSwitch(VorkNode):
@property
def id(self) -> str:
return "vork_node_switch"
@classmethod
def form(cls):
pass
def validate(self) -> bool:
return True
def process(self, context):
pass