mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
// Phase 21 — `ws` WebSocket benign control.
|
|
const _NYX_ADAPTER_MARKER = "require('ws')";
|
|
|
|
function onMessage(data) {
|
|
return 'echoed: ' + JSON.stringify(String(data));
|
|
}
|
|
|
|
module.exports = { onMessage };
|