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

9 lines
173 B
Python
Raw Normal View History

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