mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
9 lines
173 B
Python
9 lines
173 B
Python
|
|
"""Public dispatch surface for firing automations."""
|
||
|
|
|
||
|
|
from .manual import DispatchError, dispatch_manual_run
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"DispatchError",
|
||
|
|
"dispatch_manual_run",
|
||
|
|
]
|