Untitled
unknown
plain_text
a year ago
234 B
1
Indexable
Never
const { SlashCommandBuilder } = require("discord.js") module.exports = { data: new SlashCommandBuilder().setName("ping").setDescription("Pong! "), async execute(interaction) { interaction.reply("Pong!") } }