diff options
| author | Arne Rief <riearn@proton.me> | 2026-01-10 22:33:36 +0100 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2026-01-10 22:33:36 +0100 |
| commit | a28e6fbcbfc8feccdcba200c2421f5c42a78d97a (patch) | |
| tree | f35c6be871ca421ee67f3b615f50d640071aa9d5 /backend/src/controllers | |
| parent | e836e7dd4ed5e9fa60e949d159100040b22a8f48 (diff) | |
Docker
Diffstat (limited to 'backend/src/controllers')
| -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"; |
