mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 05:31:38 +01:00
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import { Command, sendMessage } from ".";
|
|
|
|
// This command is purely for testing
|
|
export default new Command('ping', ['ping'], 'chatter', async msg => {
|
|
await sendMessage('pong!', msg.messageId);
|
|
});
|