Files
toho-miku/commands/ping.js
2022-04-17 14:04:51 +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
});
}
}