Files
whaticket-community/backend/socket.js
2020-06-24 09:40:51 -03:00

15 lines
225 B
JavaScript

let io;
module.exports = {
init: httpServer => {
io = require("socket.io")(httpServer);
return io;
},
getIO: () => {
if (!io) {
throw new Error("Socket IO not initialized");
}
return io;
},
};