initial commit
This commit is contained in:
21
nodes/vork_node_if.py
Normal file
21
nodes/vork_node_if.py
Normal 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
|
Reference in New Issue
Block a user