mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
19 lines
335 B
JavaScript
19 lines
335 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class NoUCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'no-u',
|
|
aliases: ['no-you'],
|
|
group: 'auto',
|
|
memberName: 'no-u',
|
|
description: 'no u',
|
|
patterns: [/^n+o+ u+$/i]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say('no u');
|
|
}
|
|
};
|