Files
xiao/structures/Command.js
T
Dragon Fire d5aa3d4ab0 Fixes
2018-07-26 21:01:20 -04:00

13 lines
303 B
JavaScript

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