aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/ping.js
blob: cf1d8a42003f35d21f2b89a418ea7cd5d30bfeff (plain)
1
2
3
4
5
6
7
8
9
10
11
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'
};