src/events/ directory. Each file should export a default EventListener instance.
[src/events/ready.ts]
Key Methods
.event(Events.EventName): Specifies which Discord event to listen for..run((client, ...args) => { ... }): The function that executes when the event is fired. It receives theclientand any event-specific arguments.Docs WIP