eximiabots-radiox/src/client/events.ts

13 lines
510 B
TypeScript
Raw Normal View History

2023-06-04 19:35:07 +00:00
import interactionCreate from "./events/interactionCreate"
import messageDelete from "./events/messageDelete"
import ready from "./events/ready"
import SIGINT from "./events/SIGINT"
import SIGTERM from "./events/SIGTERM"
import uncaughtException from "./events/uncaughtException"
import voiceStateUpdate from "./events/voiceStateUpdate"
import warning from "./events/warning"
2023-06-05 22:39:35 +00:00
export const events = {
2023-06-04 19:35:07 +00:00
interactionCreate, messageDelete, ready, SIGINT, SIGTERM, uncaughtException, voiceStateUpdate, warning
}