mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
22 lines
624 B
TypeScript
22 lines
624 B
TypeScript
import {
|
|
handleInternalChannelCreate,
|
|
handleInternalChannelDelete,
|
|
handleInternalChannelUpdate,
|
|
} from "./channels.ts";
|
|
import {
|
|
handleInternalGuildCreate,
|
|
handleInternalGuildDelete,
|
|
handleInternalGuildUpdate,
|
|
} from "./guilds.ts";
|
|
import { handleInternalReady } from "./misc.ts";
|
|
|
|
export let controllers = {
|
|
READY: handleInternalReady,
|
|
CHANNEL_CREATE: handleInternalChannelCreate,
|
|
CHANNEL_DELETE: handleInternalChannelDelete,
|
|
CHANNEL_UPDATE: handleInternalChannelUpdate,
|
|
GUILD_CREATE: handleInternalGuildCreate,
|
|
GUILD_DELETE: handleInternalGuildDelete,
|
|
GUILD_UPDATE: handleInternalGuildUpdate,
|
|
};
|