mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
13 lines
223 B
JavaScript
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;
|