MCPcopy Create free account
hub / github.com/dulapahv/CodeX / RoomData

Interface RoomData

apps/server/src/service/code-service.ts:20–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18
19// Use a single Map for all room data to reduce memory overhead
20interface RoomData {
21 code: string;
22 langId: string;
23}
24
25// Core data structure for room management
26const roomData = new Map<string, RoomData>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected