Migration Part2, now unified.

This commit is contained in:
serversdwn
2026-01-09 07:56:12 +00:00
parent 16eb9eb1fe
commit ff438c1197
15 changed files with 2392 additions and 785 deletions

View File

@@ -38,11 +38,7 @@ from app.seismo.routers import (
from app.seismo import routes as seismo_legacy_routes
# Import feature module routers (SLM)
from app.slm.routers import (
nl43_proxy as slm_nl43_proxy,
dashboard as slm_dashboard,
ui as slm_ui,
)
from app.slm.routers import router as slm_router
# Import API aggregation layer (placeholder for now)
from app.api import dashboard as api_dashboard
@@ -107,9 +103,7 @@ app.include_router(seismo_settings.router)
app.include_router(seismo_legacy_routes.router)
# SLM Feature Module APIs
app.include_router(slm_nl43_proxy.router)
app.include_router(slm_dashboard.router)
app.include_router(slm_ui.router)
app.include_router(slm_router)
# API Aggregation Layer (future cross-feature endpoints)
# app.include_router(api_dashboard.router) # TODO: Implement aggregation