Files
minzbot-v2/commands/ping.js
2022-04-13 16:26:34 +02:00

13 lines
329 B
JavaScript

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