added version 2.0
This commit is contained in:
parent
0163d40b4e
commit
0f18925d1a
3231 changed files with 1449 additions and 374732 deletions
11
commands/fun/ping.js
Normal file
11
commands/fun/ping.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
const { SlashCommandBuilder } = require("discord.js");
|
||||
|
||||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName("ping")
|
||||
.setDescription("Replies with Pong!"),
|
||||
async execute(interaction) {
|
||||
console.log("ping command executed");
|
||||
await interaction.reply("Pong!");
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue