refraction/src/commands/ping.ts
2022-07-26 21:53:40 +08:00

10 lines
215 B
TypeScript

import type { Command } from '..';
export const cmd: Command = {
name: 'ping',
desc: 'Shows the ping of the bot',
aliases: ['test'],
exec: async (e) => {
await e.reply(`${e.client.ws.ping}ms`);
},
};