Commands
const {Command} = require('advanced-command-handler');
module.exports = class ExampleCommand extends Command {
name = '';
aliases = [];
category = '';
description = '';
usage = '';
cooldown = 0;
tags = [];
channels = [];
clientPermissions = [];
userPermissions = [];
async run(ctx) {
// your code goes here
}
}Example
Important Notes
Errors from validation
Last updated