mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-17 17:23:08 +02:00
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
const { Modal } = require('@eartharoid/dbf');
|
|
|
|
module.exports = class TopicModal extends Modal {
|
|
constructor(client, options) {
|
|
super(client, {
|
|
...options,
|
|
id: 'topic',
|
|
});
|
|
}
|
|
|
|
async run(id, interaction) {
|
|
console.log(id);
|
|
console.log(require('util').inspect(interaction, {
|
|
colors: true,
|
|
depth: 10,
|
|
}));
|
|
}
|
|
}; |