mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-31 19:45:15 +02:00
feat(automations): static_inputs on triggers + vertical-slice api/services
This commit is contained in:
parent
84d99f19a2
commit
27ab367a13
27 changed files with 915 additions and 356 deletions
|
|
@ -1,7 +1,16 @@
|
|||
"""Service layer for the automations feature."""
|
||||
"""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", "get_automation_service"]
|
||||
__all__ = [
|
||||
"AutomationService",
|
||||
"RunService",
|
||||
"TriggerService",
|
||||
"get_automation_service",
|
||||
"get_run_service",
|
||||
"get_trigger_service",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue