move automations api into vertical slice with service layer

This commit is contained in:
CREDO23 2026-05-27 18:56:16 +02:00
parent d84240a630
commit dd6bc30f98
6 changed files with 107 additions and 57 deletions

View file

@ -0,0 +1,12 @@
"""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"]