11 lines
No EOL
237 B
JavaScript
11 lines
No EOL
237 B
JavaScript
module.exports = {
|
|
api: {
|
|
name: "reload",
|
|
description: "Command to reload all commands."
|
|
},
|
|
run: async (int, client, index) => {
|
|
int.reply(`Reloading...`);
|
|
await process.loadCommands();
|
|
int.followUp("Reload complete.");
|
|
}
|
|
} |