mirror of
https://github.com/Art-Portal/April.git
synced 2024-12-27 03:44:19 +01:00
1906fa49de
Added interactions, brand new ticket system, and much more !
23 lines
850 B
JavaScript
23 lines
850 B
JavaScript
const pingrefreshbtn = require('./src/misc/pingrefreshbtn.js');
|
|
const getrole = require('./src/rolereact/getrole.js');
|
|
const apply = require('./src/ticket/applications.js');
|
|
const applicationopen = require('./src/ticket/applicationopen.js');
|
|
const ticket = require('./src/ticket/ticket.js');
|
|
const modpanel = require('./src/moderation/modpanel.js');
|
|
const blacklist = require('./src/moderation/blacklist.js');
|
|
const embedbuilder = require('./src/panels/embedbuilder');
|
|
const ticketopener = require('./src/ticket/ticketopener');
|
|
|
|
const buttonList = {
|
|
"pingrefreshbtn": pingrefreshbtn,
|
|
"getrole": getrole,
|
|
"apply": apply,
|
|
"applicationopen": applicationopen,
|
|
"ticket": ticket,
|
|
"modpanel": modpanel,
|
|
"blacklist": blacklist,
|
|
"embedbuilder": embedbuilder,
|
|
"ticketopener": ticketopener,
|
|
}
|
|
|
|
module.exports = { buttonList } |