SurfSense/surfsense_backend/app/automations/dispatch/__init__.py

8 lines
173 B
Python

"""Public dispatch surface for firing automations."""
from .manual import DispatchError, dispatch_manual_run
__all__ = [
"DispatchError",
"dispatch_manual_run",
]