diff --git a/src/commands/tts/elevenlabs-settings.ts b/src/commands/tts/elevenlabs-settings.ts index 27ba9ae..ae83812 100644 --- a/src/commands/tts/elevenlabs-settings.ts +++ b/src/commands/tts/elevenlabs-settings.ts @@ -6,7 +6,6 @@ import { import { Command } from '../../commands'; import { TTSManager } from '../../modules/tts'; import { ElevenLabsTTS } from '../../modules/tts-modes/elevenlabs'; -import { config } from '../../utils/config'; const builder = new SlashCommandBuilder() .setName('elevenlabs-settings') diff --git a/src/modules/tts-modes/tiktok.ts b/src/modules/tts-modes/tiktok.ts index 0d87416..62c5295 100644 --- a/src/modules/tts-modes/tiktok.ts +++ b/src/modules/tts-modes/tiktok.ts @@ -5,8 +5,7 @@ import * as https from 'https'; import * as zlib from 'zlib'; import TIKTOK_TTS_VOICES from './tiktok_voices.json'; -const TIKTOK_API_ENDPOINT = - 'api16-normal-v6.tiktokv.com'; +const TIKTOK_API_ENDPOINT = 'api16-normal-v6.tiktokv.com'; class TikTokTTS implements TTSModule { public name: string = 'TikTok';