const {Command} = require('../../lib.js') class tableflip extends Command{ constructor(client){ super(client, { name: 'tableflip', group:'random', memberName: 'tableflip', description: 'Flips a table.' }) } async run(message, args){ message.channel.send('(╯°□°)╯︵ ┻━┻'); } } module.exports = tableflip;