Files
toho-miku/commands/ping.js

13 lines
320 B
JavaScript

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