feat(sensor-placement): add editable scheme APIs

This commit is contained in:
2026-07-30 16:16:51 +08:00
parent 6a85a7fd78
commit 5af2571b48
13 changed files with 1313 additions and 122 deletions
+2
View File
@@ -5,6 +5,7 @@ from app.api.v1.endpoints import (
project,
simulation,
scada,
sensor_placement,
extension,
snapshots,
users,
@@ -87,6 +88,7 @@ api_router.include_router(visuals.router, tags=["Visuals"])
# Simulation & Data
api_router.include_router(simulation.router, tags=["Simulation Control"])
api_router.include_router(scada.router)
api_router.include_router(sensor_placement.router, tags=["Sensor Placement"])
api_router.include_router(snapshots.router, tags=["Snapshots"])
api_router.include_router(users.router, tags=["Users"])
api_router.include_router(schemes.router, tags=["Schemes"])