From a28e6fbcbfc8feccdcba200c2421f5c42a78d97a Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Sat, 10 Jan 2026 22:33:36 +0100 Subject: Docker --- backend/src/controllers/moveAllRobots.ts | 2 +- backend/src/controllers/moveRobot.ts | 2 +- backend/src/controllers/stopAllRobots.ts | 2 +- backend/src/controllers/stopRobot.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'backend/src') diff --git a/backend/src/controllers/moveAllRobots.ts b/backend/src/controllers/moveAllRobots.ts index e4d1252..e7291b6 100644 --- a/backend/src/controllers/moveAllRobots.ts +++ b/backend/src/controllers/moveAllRobots.ts @@ -1,6 +1,6 @@ import { Request, Response } from "express"; import { Server } from "socket.io"; -import { setAllRobotsMoving } from "../simulation/robotMovementSimulator"; +import { setAllRobotsMoving } from "../simulation/robotMovementSimulator.js"; import { ErrorResponse } from "../types/error"; import { SimulationResponse } from "../types/robot"; diff --git a/backend/src/controllers/moveRobot.ts b/backend/src/controllers/moveRobot.ts index 1b53f17..a26b56c 100644 --- a/backend/src/controllers/moveRobot.ts +++ b/backend/src/controllers/moveRobot.ts @@ -1,6 +1,6 @@ import { Request, Response } from "express"; import { Server } from "socket.io"; -import { setRobotMoving } from "../simulation/robotMovementSimulator"; +import { setRobotMoving } from "../simulation/robotMovementSimulator.js"; import { ErrorResponse } from "../types/error"; import { SimulationResponse } from "../types/robot"; diff --git a/backend/src/controllers/stopAllRobots.ts b/backend/src/controllers/stopAllRobots.ts index 7218e66..a0680b2 100644 --- a/backend/src/controllers/stopAllRobots.ts +++ b/backend/src/controllers/stopAllRobots.ts @@ -1,5 +1,5 @@ import { Request, Response } from "express"; -import { setAllRobotsIdle } from "../simulation/robotMovementSimulator"; +import { setAllRobotsIdle } from "../simulation/robotMovementSimulator.js"; import { ErrorResponse } from "../types/error"; import { SimulationResponse } from "../types/robot"; diff --git a/backend/src/controllers/stopRobot.ts b/backend/src/controllers/stopRobot.ts index d0d7c4f..af98329 100644 --- a/backend/src/controllers/stopRobot.ts +++ b/backend/src/controllers/stopRobot.ts @@ -1,5 +1,5 @@ import { Request, Response } from "express"; -import { setRobotIdle } from "../simulation/robotMovementSimulator"; +import { setRobotIdle } from "../simulation/robotMovementSimulator.js"; import { ErrorResponse } from "../types/error"; import { SimulationResponse } from "../types/robot"; -- cgit v1.2.3