fix(handlers): add missing imports (#723)

Co-authored-by: ayntee <ayyantee@gmail.com>
This commit is contained in:
ITOH
2021-03-31 19:51:46 +02:00
committed by GitHub
parent 4489a46c61
commit dd21008f90
4 changed files with 14 additions and 1 deletions
@@ -1,5 +1,9 @@
import { eventHandlers } from "../../bot.ts";
import { cacheHandlers } from "../../cache.ts";
import {
DiscordChannelPinsUpdate,
DiscordGatewayPayload,
} from "../../types/mod.ts";
export async function handleChannelPinsUpdate(data: DiscordGatewayPayload) {
const payload = data.d as DiscordChannelPinsUpdate;