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/menus/create.js Normal file
View File

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