const Command = require('../../structures/Command'); module.exports = class EatPantCommand extends Command { constructor(client) { super(client, { name: 'eat-pant', group: 'random', memberName: 'eat-pant', description: 'eat pant', clientPermissions: ['ATTACH_FILES'] }); } run(msg) { return msg.say({ files: ['https://i.imgur.com/9zWcsXx.jpg'] }); } };