Files
xiao/commands/single/dark-theme-light-theme.js
T
2018-09-09 15:39:23 +00:00

20 lines
607 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class DarkThemeLightThemeCommand extends Command {
constructor(client) {
super(client, {
name: 'dark-theme-light-theme',
aliases: ['light-theme-dark-theme', 'dark-theme', 'light-theme'],
group: 'single',
memberName: 'dark-theme-light-theme',
description: 'Determines whether you use dark or light theme.',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme.png')] });
}
};