Create commands

This commit is contained in:
Isaac
2022-08-02 21:13:32 +01:00
parent e28392352c
commit b4618aac1b
19 changed files with 743 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
const { Autocompleter } = require('@eartharoid/dbf');
module.exports = class ReferencesCompleter extends Autocompleter {
constructor(client, options) {
super(client, {
...options,
id: 'references',
});
}
async run(value, comamnd, interaction) { }
};

View File

@@ -0,0 +1,12 @@
const { Autocompleter } = require('@eartharoid/dbf');
module.exports = class TicketCompleter extends Autocompleter {
constructor(client, options) {
super(client, {
...options,
id: 'ticket',
});
}
async run(value, comamnd, interaction) { }
};