ticket creation works

This commit is contained in:
Isaac
2022-08-08 21:55:09 +01:00
parent 01e479dab5
commit bc3ccdcb82
10 changed files with 226 additions and 95 deletions

12
src/buttons/edit.js Normal file
View File

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