2020-09-17 13:44:32 +08:00
|
|
|
/* eslint no-empty-function: 0 */
|
2018-06-04 02:08:35 +08:00
|
|
|
|
2022-06-23 00:32:51 +08: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-13 02:28:20 +08:00
|
|
|
export async function run() { }
|
2018-06-04 02:08:35 +08:00
|
|
|
|
2022-06-23 00:32:51 +08: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-07 15:35:23 +08:00
|
|
|
export const info = {
|
2018-06-04 02:08:35 +08:00
|
|
|
name: 'ping',
|
2022-06-23 00:32:51 +08:00
|
|
|
category: 'core',
|
|
|
|
description: 'This module is only in place to supress error notices legacy clients may get',
|
|
|
|
usage: 'none',
|
2018-06-04 02:08:35 +08:00
|
|
|
};
|