This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ShareX-Upload-Server/bot/commands/restart.js
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();
});
},
};