Base setup with ping command

This commit is contained in:
Minzkraut
2022-04-13 16:26:34 +02:00
parent b58fc8d2bb
commit 798b2b542c
6 changed files with 3057 additions and 0 deletions

13
commands/ping.js Normal file
View File

@@ -0,0 +1,13 @@
const { SlashCommandBuilder } = require("@discordjs/builders");
module.exports = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Ping, yes"),
async execute(interaction) {
interaction.reply({
content: "Pong!",
ephemeral: true
});
}
}