Ping Pong

This commit is contained in:
= 2021-07-09 18:15:33 -04:00
parent 1472e83032
commit 6b8390a7f3
1 changed files with 7 additions and 0 deletions

7
commands/ping.js Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
name: 'ping',
description: 'Pong!',
execute(message, args) {
message.channel.send('Pong!');
}
}