mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-14 05:50:19 +00:00
13 lines
503 B
TypeScript
13 lines
503 B
TypeScript
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"
|
|
|
|
export default {
|
|
interactionCreate, messageDelete, ready, SIGINT, SIGTERM, uncaughtException, voiceStateUpdate, warning
|
|
}
|