Files
pepperplus-cb/src/control_backend/api/v1/router.py
Kasper Marinus 1229df70b0 chore: filled in project structure
Added some example basic files containing a functioning /message
endpoint which logs the received message to INFO.

ref: N25B-144
2025-10-08 15:02:11 +02:00

16 lines
258 B
Python

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