|
@@ -12,7 +12,6 @@ from app.api.routers import (
|
|
|
space,
|
|
|
bluetooth,
|
|
|
devices,
|
|
|
- nlp,
|
|
|
positioning,
|
|
|
)
|
|
|
from app.api.routers.model_path import early_start
|
|
@@ -35,7 +34,6 @@ def get_application() -> FastAPI:
|
|
|
application.include_router(bluetooth.router, prefix="/bluetooth", tags=["BLE"])
|
|
|
application.include_router(devices.router, prefix="/devices", tags=["Devices"])
|
|
|
application.include_router(early_start.router, prefix="/model-path", tags=["Model Path"])
|
|
|
- application.include_router(nlp.router, prefix="/nlp-service", tags=["NLP"])
|
|
|
application.include_router(positioning.router, prefix="/positioning-service", tags=["Positioning Service"])
|
|
|
application.include_router(space.router, prefix="/room", tags=["Spaces"])
|
|
|
application.include_router(targets.router, prefix="/target", tags=["Targets"])
|