adds eventhandler

This commit is contained in:
mightypanders 2022-01-19 22:18:52 +01:00
parent 7ac09678a1
commit 51c5e79ffc

22
server/eventHandler.ts Normal file
View File

@ -0,0 +1,22 @@
import { Collection, Guild, GuildScheduledEvent, Snowflake } from "discord.js";
export default class eventHandler {
public constructor() {
console.log('constructed')
}
public listAllEvents(guild: Guild): string {
const eventManager = guild.scheduledEvents
const events: Collection<Snowflake, GuildScheduledEvent> = eventManager.cache
const entries = events.values()
let output = ""
for (const e of entries) {
console.log(e)
output += e.toString()
}
console.log(output)
return output
}
}