feat(automations): add shared start_run dispatch helper

This commit is contained in:
CREDO23 2026-05-29 17:48:39 +02:00
parent 356400ae2a
commit 6fa2e52361
2 changed files with 56 additions and 1 deletions

View file

@ -4,5 +4,6 @@ from __future__ import annotations
from .errors import DispatchError
from .run import dispatch_run
from .start import start_run
__all__ = ["DispatchError", "dispatch_run"]
__all__ = ["DispatchError", "dispatch_run", "start_run"]