Files
xiao/structures/Command.js
T
2018-08-15 19:34:34 -04:00

11 lines
290 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class XiaoCommand extends Command {
constructor(client, info) {
super(client, info);
this.argsSingleQuotes = info.argsSingleQuotes || false;
this.throttling = info.throttling || { usages: 1, duration: 2 };
}
};