bigbluebutton-Github/labs/kurento-screenshare/server.js
prlanzarin 02a6373c96 Refactored kurento-screenshare server to decouple it from kurento
Theres still some work to do on that regarding ICE handling
2017-07-10 20:51:06 +00:00

12 lines
261 B
JavaScript
Executable File

/*
* Paulo Renato Lanzarin
* (C) Copyright 2017 Bigbluebutton
*
*/
const ConnectionManager = require('./lib/ConnectionManager');
const CM = new ConnectionManager();
process.on('SIGTERM', CM._stopAll.bind(CM));
process.on('SIGINT', CM._stopAll.bind(CM));