1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/src/commands/core/ping.js

15 lines
327 B
JavaScript
Raw Normal View History

2018-06-04 02:08:35 +08:00
/*
Description: This module is only in place to supress error notices legacy sources may get
*/
// module main
2018-06-04 02:08:35 +08:00
exports.run = async (core, server, socket, data) => {
return;
};
// module meta
2018-06-04 02:08:35 +08:00
exports.info = {
name: 'ping',
description: 'This module is only in place to supress error notices legacy sources may get'
};