Files
pepperplus-cb/src/control_backend/api/v1/router.py
Kasper 220c5c7739 feat: send logs to UI
Added SSE endpoint `/logs/stream` for the UI to listen to logs.

ref: N25B-242
2025-11-05 13:57:51 +01:00

14 lines
370 B
Python

from fastapi.routing import APIRouter
from control_backend.api.v1.endpoints import command, logs, message, sse
api_router = APIRouter()
api_router.include_router(message.router, tags=["Messages"])
api_router.include_router(sse.router, tags=["SSE"])
api_router.include_router(command.router, tags=["Commands"])
api_router.include_router(logs.router, tags=["Logs"])