File size: 512 Bytes
c23f777 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | //jshint esversion:8
const execute = async (client, msg /*,args*/) => {};
module.exports = {
name: "", //name of the module
description: "", // short description of what this command does
command: "", //command with prefix. Ex command: '!test'
commandType: "", // admin|info|plugin
isDependent: true | false, //whether this command is related/dependent to some other command
help: "", // a string descring how to use this command Ex = help : 'To use this command type !test arguments'
execute,
};
|