blob: c0daa13dbfde06cc61a8a57fa97a105590388015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
Description: This module adjusts outgoing data, making it compatible with legacy clients
*/
// module main
export async function run(core, server, socket, data) {
/**
* @todo
*/
}
// module hook functions
export function initHooks(server) {
// module is only a placeholder
// server.registerHook('out', '', this.);
}
export const info = {
name: 'legacylayer',
description: 'This module adjusts outgoing data, making it compatible with legacy clients',
};
|