From 62daa4893f374c1cbbecc63e4f1d4eec3fd29325 Mon Sep 17 00:00:00 2001 From: marzavec Date: Sun, 3 Jun 2018 11:08:35 -0700 Subject: Completed protocol decoupling --- server/src/commands/core/ping.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 server/src/commands/core/ping.js (limited to 'server/src/commands/core/ping.js') diff --git a/server/src/commands/core/ping.js b/server/src/commands/core/ping.js new file mode 100644 index 0000000..cf1d8a4 --- /dev/null +++ b/server/src/commands/core/ping.js @@ -0,0 +1,12 @@ +/* + Description: This module is only in place to supress error notices legacy sources may get +*/ + +exports.run = async (core, server, socket, data) => { + return; +}; + +exports.info = { + name: 'ping', + description: 'This module is only in place to supress error notices legacy sources may get' +}; -- cgit v1.2.1