WhatsBot / examples /command_template.js
Sk0lovek's picture
Upload 70 files
c23f777 verified
Raw
History Blame Contribute Delete
512 Bytes
//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,
};