This repository has been archived on 2024-10-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2021-08-18 00:12:37 -07:00

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();
});
},
};