const pool = global.pool const fpbx = global.fpbx const client = global.client const log = global.log const Discord = require("discord.js") module.exports = {}; module.exports.execute = async (interaction) => { interaction.channel.send({ embeds: [{ title: "Placeholder", description: "I'll put the full embed here once we get it finalized.", }], components: [ { type: 1, components: [ { type: Discord.ComponentType.Button, label: "Get an Extension", emoji: "✅", style: Discord.ButtonStyle.Success, custom_id: "newExtension" }, { type: Discord.ComponentType.Button, label: "Get your extension info", emoji: "ℹ️", style: Discord.ButtonStyle.Primary, custom_id: "getExtensionInfo" } ] } ] }) }