discord-bot/commands/ping.ts

8 lines
154 B
TypeScript
Raw Permalink Normal View History

2021-05-20 20:59:15 -04:00
// Codey ping Command
import Discord from 'discord.js';
2021-06-03 20:29:40 -04:00
export const pingCmd = async (message: Discord.Message) => {
2021-05-20 20:59:15 -04:00
message.channel.send('pong');
};