mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
11 lines
209 B
JavaScript
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;
|