18 lines
525 B
Python
18 lines
525 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# Executors for automation2 node types.
|
|
|
|
from .triggerExecutor import TriggerExecutor
|
|
from .flowExecutor import FlowExecutor
|
|
from .actionNodeExecutor import ActionNodeExecutor
|
|
from .inputExecutor import InputExecutor, PauseForHumanTaskError, PauseForEmailWaitError
|
|
from .dataExecutor import DataExecutor
|
|
|
|
__all__ = [
|
|
"TriggerExecutor",
|
|
"FlowExecutor",
|
|
"ActionNodeExecutor",
|
|
"InputExecutor",
|
|
"DataExecutor",
|
|
"PauseForHumanTaskError",
|
|
"PauseForEmailWaitError",
|
|
]
|