Files
qweribot/bot/commands/ping.ts

11 lines
205 B
TypeScript

import { Command, sendMessage } from ".";
// This command is purely for testing
export default new Command('ping',
['ping'],
[],
async msg => {
await sendMessage('pong!', msg.messageId);
}
);