const { sendRulesEmbed } = require('../systems/embeds'); const { successEmbed } = require('../utils/embeds'); module.exports = { name: 'post rules', async execute(client, message) { await sendRulesEmbed(client); await message.reply({ embeds: [successEmbed('Rules Posted', 'Rules embed sent to 📜・rules')] }); }, };