From ee13f3ce3f9fe2bc59c65b28b81f201912e446ba Mon Sep 17 00:00:00 2001 From: Yuzu Date: Mon, 18 Jul 2022 15:08:55 +0700 Subject: [PATCH] Code clean up --- src/discord/Developer/ServiceAnnouncement.ts | 2 +- src/discord/MusicPlayer/Play.ts | 1 - src/index.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/discord/Developer/ServiceAnnouncement.ts b/src/discord/Developer/ServiceAnnouncement.ts index faddf89..12b78aa 100644 --- a/src/discord/Developer/ServiceAnnouncement.ts +++ b/src/discord/Developer/ServiceAnnouncement.ts @@ -1,4 +1,4 @@ -import { Message, EmbedBuilder, Interaction, CommandInteraction, TextChannel, BaseInteraction, EmbedData, EmbedFieldData, EmbedProviderData } from 'discord.js'; +import { Message, EmbedBuilder, CommandInteraction, TextChannel, EmbedData } from 'discord.js'; import { Promise } from 'bluebird'; import fs from 'fs'; import path from 'path'; diff --git a/src/discord/MusicPlayer/Play.ts b/src/discord/MusicPlayer/Play.ts index 08a9774..744f076 100644 --- a/src/discord/MusicPlayer/Play.ts +++ b/src/discord/MusicPlayer/Play.ts @@ -25,7 +25,6 @@ import { sendHybridInteractionMessageResponse, makeInfoEmbed } from '../../utils/DiscordMessage'; -import { SpotifyTrack, YouTubeVideo } from 'play-dl'; import { checkBotPermissionsInChannel } from '../../utils/DiscordPermission'; const EMBEDS = { diff --git a/src/index.ts b/src/index.ts index 39f61b1..0f22973 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,5 +10,4 @@ App.loadLocale(); App.loadDiscord(); App.load_osu(); - export default App;