thaldrin/DiscordModules/Developers/stop.js
2019-11-10 09:42:09 +01:00

20 lines
370 B
JavaScript
Executable file

const Command = require('../../src/structures/Command');
module.exports = class Stop extends Command {
constructor() {
super({
name: 'stop',
description: 'Stops the bot',
aliases: [],
module: 'Developers',
cooldown: 0,
guildOnly: false,
developerOnly: true
});
}
async command(ctx) {
await ctx.send('Restarting.');
process.exit();
}
};