const functions = require('../functions.js'); module.exports = { name: 'roll', description: 'Add a phrase to the .joint command', usage: '', execute(message, file) { functions.uploadPotPhrase(file.name); message.channel.send('"' + file.name + '" has been added to the list'); } }