Added other events with voice state logging

This commit is contained in:
2023-11-21 12:37:23 +01:00
parent 118bb7c6a0
commit 926d1f01e8
6 changed files with 128 additions and 7 deletions

View File

@@ -5,5 +5,15 @@ const { loadMessageEvents } = require('./eventHandlers/message.js')
const { loadModalEvents } = require('./eventHandlers/modal.js')
const { loadReadyEvents } = require('./eventHandlers/ready.js')
const { loadInteractionEvents } = require('./eventHandlers/interaction.js')
const { loadOtherEvents } = require('./eventHandlers/other.js')
module.exports = { loadSlashCommands, loadButtonEvents, loadContextMenu, loadMessageEvents, loadModalEvents, loadReadyEvents, loadInteractionEvents }
module.exports = {
loadSlashCommands,
loadButtonEvents,
loadContextMenu,
loadMessageEvents,
loadModalEvents,
loadReadyEvents,
loadInteractionEvents,
loadOtherEvents
}