const Command = require('../../structures/Command'); module.exports = class ItsJokeCommand extends Command { constructor(client) { super(client, { name: 'its-joke', group: 'random', memberName: 'its-joke', description: 'It\'s joke!', clientPermissions: ['ATTACH_FILES'] }); } run(msg) { return msg.say({ files: ['https://i.imgur.com/Gmsx9Ma.jpg'] }); } };