Files
MultiRoombaRover/server/src/services/replayBuildService/index.js
T
2026-04-28 19:53:10 -04:00

9 lines
333 B
JavaScript

// replay Build Service
// Purpose: Defines the replay Build Service module and the helpers/state used by this service unit.
// Scope: Keeps runtime behavior unchanged while isolating responsibilities into a clear module boundary.
const { buildReplayVideo } = require('../replayEngineV2');
module.exports = {
buildReplayVideo,
};