mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
12 lines
251 B
Python
12 lines
251 B
Python
"""HTTP layer for the automations feature."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .automation import router as automation_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(automation_router)
|
|
|
|
__all__ = ["router"]
|