mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-18 20:33:28 +02:00
13 lines
255 B
JavaScript
Executable File
13 lines
255 B
JavaScript
Executable File
module.exports = function(io) {
|
|
|
|
io.on('connection', function(socket) {
|
|
|
|
// bind all listeners to the socket
|
|
require('./events/connection')(socket);
|
|
require('./events/disconnection')(socket);
|
|
require('./events/chat')(socket);
|
|
|
|
});
|
|
|
|
};
|