// core/index.js const websocketServicesI = require('./websocket/services/session'); const websocketConnectionI = require('./websocket/connection'); // Create the instances here const websocketService = websocketServicesI(); const websocketManager = websocketConnectionI(websocketService); module.exports = { websocketService, websocketManager, };