diff options
Diffstat (limited to 'backend/src')
| -rw-r--r-- | backend/src/controllers/moveAllRobots.ts | 2 | ||||
| -rw-r--r-- | backend/src/controllers/moveRobot.ts | 2 | ||||
| -rw-r--r-- | backend/src/controllers/stopAllRobots.ts | 2 | ||||
| -rw-r--r-- | backend/src/controllers/stopRobot.ts | 2 |
4 files changed, 4 insertions, 4 deletions
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"; |
