mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-13 03:30: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
|
||
|
}
|