mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
8 lines
211 B
Python
8 lines
211 B
Python
|
|
"""Service layer for the automations feature."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from .automation import AutomationService, get_automation_service
|
||
|
|
|
||
|
|
__all__ = ["AutomationService", "get_automation_service"]
|