File size: 348 Bytes
3c7e34b | 1 2 3 4 5 6 7 8 9 10 11 | 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')] });
},
};
|