test command
This commit is contained in:
parent
7038dc1c6f
commit
79cfe4c57d
1 changed files with 14 additions and 0 deletions
14
bot/commands/Bot/ping.js
Normal file
14
bot/commands/Bot/ping.js
Normal 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?');
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue