feat(automations): add manual dispatch service

This commit is contained in:
CREDO23 2026-05-27 15:30:41 +02:00
parent 1366c8a711
commit 3bb02d8889
2 changed files with 115 additions and 0 deletions

View file

@ -0,0 +1,8 @@
"""Public dispatch surface for firing automations."""
from .manual import DispatchError, dispatch_manual_run
__all__ = [
"DispatchError",
"dispatch_manual_run",
]