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

33 lines
864 B
JavaScript
Raw Normal View History

2020-09-17 00:44:32 -05:00
/* eslint no-empty-function: 0 */
2018-06-03 11:08:35 -07:00
2022-06-22 11:32:51 -05:00
/**
* @author Marzavec ( https://github.com/marzavec )
* @summary Legacy support module
* @version 1.0.0
* @description This module is only in place to supress error notices legacy clients may get
* @module ping
*/
/**
* Executes when invoked by a remote client
* @public
* @return {void}
*/
2020-03-12 13:28:20 -05:00
export async function run() { }
2018-06-03 11:08:35 -07:00
2022-06-22 11:32:51 -05:00
/**
* Module meta information
* @public
* @typedef {Object} ping/info
* @property {string} name - Module command name
* @property {string} category - Module category name
* @property {string} description - Information about module
* @property {string} usage - Information about module usage
*/
2019-11-06 23:35:23 -08:00
export const info = {
2018-06-03 11:08:35 -07:00
name: 'ping',
2022-06-22 11:32:51 -05:00
category: 'core',
description: 'This module is only in place to supress error notices legacy clients may get',
usage: 'none',
2018-06-03 11:08:35 -07:00
};