mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-24 06:58:28 +02:00
15 lines
256 B
JavaScript
Executable File
15 lines
256 B
JavaScript
Executable File
var mineflayer = require('mineflayer');
|
|
|
|
|
|
module.exports = function(io) {
|
|
|
|
io.on('connection', function(socket) {
|
|
|
|
// bind all events to the socket
|
|
require('./events/connection')(socket);
|
|
require('./events/disconnection')(socket);
|
|
|
|
});
|
|
|
|
};
|