refactor(handlers): move presence/* to misc/* (#677)

This commit is contained in:
ayntee
2021-03-17 16:32:45 +04:00
committed by GitHub
parent eba5679806
commit 489aa6d166
4 changed files with 3 additions and 3 deletions

View File

@@ -29,10 +29,10 @@ import { handleMessageReactionRemove } from "./messages/MESSAGE_REACTION_REMOVE.
import { handleMessageReactionRemoveAll } from "./messages/MESSAGE_REACTION_REMOVE_ALL.ts";
import { handleMessageReactionRemoveEmoji } from "./messages/MESSAGE_REACTION_REMOVE_EMOJI.ts";
import { handleMessageUpdate } from "./messages/MESSAGE_UPDATE.ts";
import { handlePresenceUpdate } from "./misc/PRESENCE_UPDATE.ts";
import { handleReady } from "./misc/READY.ts";
import { handlePresenceUpdate } from "./presence/PRESENCE_UPDATE.ts";
import { handleTypingStart } from "./presence/TYPING_START.ts";
import { handleUserUpdate } from "./presence/USER_UPDATE.ts";
import { handleTypingStart } from "./misc/TYPING_START.ts";
import { handleUserUpdate } from "./misc/USER_UPDATE.ts";
import { handleGuildRoleCreate } from "./roles/GUILD_ROLE_CREATE.ts";
import { handleGuildRoleDelete } from "./roles/GUILD_ROLE_DELETE.ts";
import { handleGuildRoleUpdate } from "./roles/GUILD_ROLE_UPDATE.ts";