aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/ping.js
blob: 1e710e526ba2df6b180314314c4ce80f3ce65d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
  Description: This module is only in place to supress error notices legacy sources may get
*/

// module main
exports.run = async (core, server, socket, data) => {
  return;
};

// module meta
exports.info = {
  name: 'ping',
  description: 'This module is only in place to supress error notices legacy sources may get'
};