feat(system): add compute contour telemetry APIs

This commit is contained in:
DCCONSTRUCTIONS
2026-07-28 00:54:18 +03:00
parent b8a008b50e
commit 1f4c960cc4
5 changed files with 909 additions and 23 deletions
+6
View File
@@ -33,6 +33,7 @@ from k1link.sessions import (
SessionStore,
)
from k1link.web.advanced_laboratory_api import build_advanced_laboratory_router
from k1link.web.compute_contour_api import build_compute_contour_router
from k1link.web.device_plugin_composition import load_installed_device_plugins
from k1link.web.e30_engineering_api import build_e30_engineering_router
from k1link.web.e30_human_review_api import build_e30_human_review_router
@@ -624,6 +625,11 @@ app.include_router(
root_provider=lambda: REPOSITORY_ROOT / ".runtime" / "system",
)
)
app.include_router(
build_compute_contour_router(
root_provider=lambda: REPOSITORY_ROOT / ".runtime" / "system",
)
)
frontend_dist = REPOSITORY_ROOT / "apps" / "control-station" / "dist"