diff --git a/src/commands/tts/clear.ts b/src/commands/tts/clear.ts index 66cbc38..ab51540 100644 --- a/src/commands/tts/clear.ts +++ b/src/commands/tts/clear.ts @@ -1,7 +1,7 @@ import { ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js'; import { Command } from '../../commands'; import { getVoiceConnection, VoiceConnectionStatus } from '@discordjs/voice'; -import { AudioStreamManager } from '../../modules/audiostreams'; +import { AudioStreamManager } from '../../modules/audioStreams'; const builder = new SlashCommandBuilder() .setName('tts-clear') diff --git a/src/commands/tts/messageListener.ts b/src/commands/tts/messageListener.ts index fc9372c..1da37fe 100644 --- a/src/commands/tts/messageListener.ts +++ b/src/commands/tts/messageListener.ts @@ -3,7 +3,7 @@ import { Command } from '../../commands'; import { Logger } from '../../utils/log'; import { getVoiceConnection, VoiceConnectionStatus } from '@discordjs/voice'; import { TTSManager } from '../../modules/tts'; -import { AudioStreamManager } from '../../modules/audiostreams'; +import { AudioStreamManager } from '../../modules/audioStreams'; import { Readable } from 'stream'; import { DataTypes } from 'sequelize'; import { config } from '../../utils/config';