9 lines
312 B
Python
9 lines
312 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# Executors for automation2 node types.
|
|
|
|
from .triggerExecutor import TriggerExecutor
|
|
from .flowExecutor import FlowExecutor
|
|
from .dataExecutor import DataExecutor
|
|
from .ioExecutor import IOExecutor
|
|
|
|
__all__ = ["TriggerExecutor", "FlowExecutor", "DataExecutor", "IOExecutor"]
|