aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/ping.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/commands/core/ping.js')
-rw-r--r--server/src/commands/core/ping.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/server/src/commands/core/ping.js b/server/src/commands/core/ping.js
index 1e710e5..7d8623d 100644
--- a/server/src/commands/core/ping.js
+++ b/server/src/commands/core/ping.js
@@ -3,12 +3,11 @@
*/
// module main
-exports.run = async (core, server, socket, data) => {
- return;
-};
+export async function run() {
+
+}
-// module meta
-exports.info = {
+export const info = {
name: 'ping',
- description: 'This module is only in place to supress error notices legacy sources may get'
+ description: 'This module is only in place to supress error notices legacy sources may get',
};