mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
|
/*
|
||
|
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'
|
||
|
};
|