mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
18 lines
343 B
JavaScript
18 lines
343 B
JavaScript
const Command = require('../../framework/Command');
|
|
|
|
module.exports = class NoopCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'noop',
|
|
aliases: ['no-op', 'nop'],
|
|
group: 'other',
|
|
description: 'Does nothing.',
|
|
sendTyping: false
|
|
});
|
|
}
|
|
|
|
run() {
|
|
return; // eslint-disable-line no-useless-return
|
|
}
|
|
};
|