Files
xiao/structures/Command.js
T
Daniel Odendahl Jr ceaca8da75 This might work better
2018-05-30 12:06:49 +00:00

11 lines
209 B
JavaScript

const { Command } = require('discord.js-commando');
class XiaoCommand extends Command {
constructor(client) {
this.argsPromptLimit = 1;
this.argsSingleQuotes = false;
}
}
module.exports = XiaoCommand;