adds eventhandler
This commit is contained in:
parent
7ac09678a1
commit
51c5e79ffc
22
server/eventHandler.ts
Normal file
22
server/eventHandler.ts
Normal 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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user