Untitled
Anonymous
plain_text
04/07/2023 2:14 PM
312 B
24
Indexable
const { SlashCommandBuilder } = require("discord.js")
module.exports = {
data: new SlashCommandBuilder().setName("ping").setDescription("Pong! "),
async execute(interaction) {
interaction.reply("Pong!")
}
}Editor is loading...