test command

This commit is contained in:
Emily 2022-12-11 13:38:42 +11:00
parent 7038dc1c6f
commit 79cfe4c57d
1 changed files with 14 additions and 0 deletions

14
bot/commands/Bot/ping.js Normal file
View File

@ -0,0 +1,14 @@
const Command = require("../../base/Command.js");
module.exports = class Ping extends Command {
constructor (name, category) {
super (name, category)
this.name = name,
this.description = 'Check response time between Woomy and Discord',
this.category = category
}
run (client, interaction, data) { //eslint-disable-line no-unused-vars
return interaction.reply('Pong! Did I do this right?');
}
};