mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 12:53:27 +02:00
14 lines
296 B
JavaScript
Executable File
14 lines
296 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);
|
|
require('./events/players')(socket);
|
|
|
|
});
|
|
|
|
};
|