Linting
This commit is contained in:
@@ -4,16 +4,19 @@ const log = new DebugBuilder("server", "server");
|
||||
|
||||
// Function called by the main application to initialize the addon
|
||||
export function initialize(nodeIo, config) {
|
||||
log.INFO(`Initializing ${config.name}`);
|
||||
|
||||
// Call other functions within the addon module
|
||||
registerSocketEvents(nodeIo, config);
|
||||
// Call additional initialization functions if needed
|
||||
log.INFO(`Initializing ${config.name}`);
|
||||
|
||||
// Call other functions within the addon module
|
||||
registerSocketEvents(nodeIo, config);
|
||||
// Call additional initialization functions if needed
|
||||
}
|
||||
|
||||
// Function to register Socket.IO event handlers
|
||||
function registerSocketEvents(nodeIo, config) {
|
||||
nodeIo.on(config.options.eventName, (data) => {
|
||||
log.DEBUG(`Received event "${config.options.eventName}" from client:`, data);
|
||||
});
|
||||
nodeIo.on(config.options.eventName, (data) => {
|
||||
log.DEBUG(
|
||||
`Received event "${config.options.eventName}" from client:`,
|
||||
data,
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user