mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
8 lines
209 B
Python
8 lines
209 B
Python
"""Generic dispatch primitives shared across trigger types."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .errors import DispatchError
|
|
from .run import dispatch_run
|
|
|
|
__all__ = ["DispatchError", "dispatch_run"]
|