wsb-bott / src /commands /postRules.js
APRKDEV's picture
Upload 43 files
e5c9966 verified
raw
history blame contribute delete
348 Bytes
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')] });
},
};