From feabc732cfe075a9f00a3ea4fd13eb79ab136bc5 Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 23 Jan 2026 14:03:45 -0300 Subject: [PATCH] style: run lint and format --- src/commands/tts/elevenlabs-settings.ts | 1 - src/modules/tts-modes/tiktok.ts | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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';