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

21
nodes/vork_node_if.py Normal file
View File

@@ -0,0 +1,21 @@
from typing import Dict, Any
from core import VorkNode
class VorkNodeIf(VorkNode):
@property
def id(self) -> str:
return "vork_node_if"
@classmethod
def form(cls) -> Dict[str, Any]:
return {
}
def validate(self) -> bool:
return True
def process(self, context: Any) -> bool:
return True