Files
xiao/structures/Command.js
T
2018-05-30 12:04:21 +00:00

13 lines
223 B
JavaScript

const Command = require('../../structures/Command');
class XiaoCommand extends Command {
constructor(client) {
super(client, {
argsPromptLimit: 1,
argsSingleQuotes: false
});
}
}
module.exports = XiaoCommand;