Add autocomplete, button, menu, and modal files

This commit is contained in:
Isaac
2022-08-02 18:03:55 +01:00
parent 327573a38a
commit e28392352c
11 changed files with 102 additions and 6 deletions

12
src/autocomplete/tag.js Normal file
View File

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