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