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