Core bot components

This commit is contained in:
2022-04-17 14:04:51 +02:00
parent 9578140125
commit 6eccae8721
11 changed files with 3076 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
});
}
}