Files
xiao/structures/Command.js
T
Daniel Odendahl Jr e6b6b56740 Fix requring own file
2018-05-30 12:04:21 +00:00

13 lines
222 B
JavaScript

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