11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
module.exports = {
|
|
command: 'restart',
|
|
description: 'restart the webserver',
|
|
syntax: '{PREFIX}restart',
|
|
execute: async (_this, msg) => {
|
|
msg.channel.createMessage('Restarting...').then(() => {
|
|
process.exit();
|
|
});
|
|
},
|
|
};
|