refactor(automations): bind action handlers via ActionContext factory

This commit is contained in:
CREDO23 2026-05-27 16:29:32 +02:00
parent f646b5cbab
commit 7ec3468113
6 changed files with 65 additions and 15 deletions

View file

@ -3,8 +3,10 @@
from __future__ import annotations
from .actions import (
ActionContext,
ActionDefinition,
ActionHandler,
ActionHandlerFactory,
all_actions,
get_action,
register_action,
@ -17,8 +19,10 @@ from .triggers import (
)
__all__ = [
"ActionContext",
"ActionDefinition",
"ActionHandler",
"ActionHandlerFactory",
"TriggerDefinition",
"all_actions",
"all_triggers",