mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
16 lines
439 B
Python
16 lines
439 B
Python
"""Services for the automations HTTP layer (one service per resource)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .automation import AutomationService, get_automation_service
|
|
from .run import RunService, get_run_service
|
|
from .trigger import TriggerService, get_trigger_service
|
|
|
|
__all__ = [
|
|
"AutomationService",
|
|
"RunService",
|
|
"TriggerService",
|
|
"get_automation_service",
|
|
"get_run_service",
|
|
"get_trigger_service",
|
|
]
|