DiscordTickets/src/buttons/create.js

12 lines
227 B
JavaScript
Raw Normal View History

const { Button } = require('@eartharoid/dbf');
module.exports = class CreateButton extends Button {
constructor(client, options) {
super(client, {
...options,
id: 'create',
});
}
async run(id, interaction) { }
};