Files
whaticket-community/backend/socket.js
Cassio Santos 47f152a145 working
2020-05-23 17:19:42 -03:00

15 lines
211 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;
},
};