From e5ed54a2dd7557bd55ca0ad9ace8e685ffeeeae1 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Sun, 8 Nov 2020 17:06:54 +0900 Subject: [PATCH] lint error fix --- src/managers/guildChannels.ts | 1 - src/structures/guild.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/managers/guildChannels.ts b/src/managers/guildChannels.ts index 9f9cc6d..3f0767f 100644 --- a/src/managers/guildChannels.ts +++ b/src/managers/guildChannels.ts @@ -9,7 +9,6 @@ import { GuildTextChannelPayload, GuildVoiceChannelPayload } from '../types/channel.ts' -import { CHANNEL } from '../types/endpoint.ts' import { BaseChildManager } from './baseChild.ts' import { ChannelsManager } from './channels.ts' diff --git a/src/structures/guild.ts b/src/structures/guild.ts index bfe7026..1282d02 100644 --- a/src/structures/guild.ts +++ b/src/structures/guild.ts @@ -2,9 +2,7 @@ import { Client } from '../models/client.ts' import { GuildFeatures, GuildPayload } from '../types/guild.ts' import { PresenceUpdatePayload } from '../types/gateway.ts' import { Base } from './base.ts' -import { Emoji } from './emoji.ts' import { VoiceState } from './voiceState.ts' -import cache from '../models/cache.ts' import { RolesManager } from '../managers/roles.ts' import { GuildChannelsManager } from '../managers/guildChannels.ts' import { MembersManager } from '../managers/members.ts'