mirror of
https://github.com/screentinker/screentinker.git
synced 2026-05-15 07:32:23 -06:00
ScreenTinker - open source digital signage management software. MIT License, all features included, no license gates. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
const setupDeviceSocket = require('./deviceSocket');
|
|
const setupDashboardSocket = require('./dashboardSocket');
|
|
|
|
module.exports = function setupWebSockets(io) {
|
|
const deviceNs = setupDeviceSocket(io);
|
|
const dashboardNs = setupDashboardSocket(io);
|
|
return { deviceNs, dashboardNs };
|
|
};
|