basic command handler (messageCreate fixme)

This commit is contained in:
2021-08-23 15:05:17 +02:00
parent 4f82c6efdd
commit 2b5d3fa0b6
7 changed files with 519 additions and 507 deletions

6
src/cmds/ping.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
name: 'ping',
execute(msg) {
msg.channel.send(`pong`);
},
};