fix: gitignore + testing map structure

ref: N25B-205
This commit is contained in:
Björn Otgaar
2025-10-22 12:41:47 +02:00
parent 77c6704632
commit d71cb60523
5 changed files with 33 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
from fastapi.routing import APIRouter
from control_backend.api.v1.endpoints import message, sse
from control_backend.api.v1.endpoints import message, sse, sse_ping
api_router = APIRouter()
@@ -13,3 +13,8 @@ api_router.include_router(
sse.router,
tags=["SSE"]
)
api_router.include_router(
sse_ping.router,
tags=["SSE_ping"]
)