Add files via upload

This commit is contained in:
2021-08-18 00:12:37 -07:00
committed by GitHub
parent ecd6246099
commit 9d759573d2
55 changed files with 3098 additions and 0 deletions

10
bot/commands/restart.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
command: 'restart',
description: 'restart the webserver',
syntax: '{PREFIX}restart',
execute: async (_this, msg) => {
msg.channel.createMessage('Restarting...').then(() => {
process.exit();
});
},
};