2022-12-16 13:48:39 +01:00
|
|
|
import { DiscordModule } from '@discord-nestjs/core';
|
2022-12-17 01:25:45 +01:00
|
|
|
import { Module } from '@nestjs/common';
|
2022-12-16 13:48:39 +01:00
|
|
|
|
2022-12-17 16:58:38 +01:00
|
|
|
import { DiscordClientModule } from '../clients/discord/discord.module';
|
2022-12-17 01:25:45 +01:00
|
|
|
import { JellyfinClientModule } from '../clients/jellyfin/jellyfin.module';
|
2022-12-17 21:39:52 +01:00
|
|
|
import { PlaybackModule } from '../playback/playback.module';
|
2022-12-16 16:10:16 +01:00
|
|
|
import { CurrentTrackCommand } from './current.command';
|
|
|
|
import { DisconnectCommand } from './disconnect.command';
|
2022-12-17 01:25:45 +01:00
|
|
|
import { HelpCommand } from './help.command';
|
2022-12-16 16:10:16 +01:00
|
|
|
import { PausePlaybackCommand } from './pause.command';
|
2022-12-17 19:52:32 +01:00
|
|
|
import { PlayItemCommand } from './play.comands';
|
2022-12-17 21:39:52 +01:00
|
|
|
import { PreviousTrackCommand } from './previous.command';
|
2022-12-16 16:10:16 +01:00
|
|
|
import { SkipTrackCommand } from './skip.command';
|
2022-12-17 01:25:45 +01:00
|
|
|
import { StatusCommand } from './status.command';
|
2022-12-16 16:10:16 +01:00
|
|
|
import { StopPlaybackCommand } from './stop.command';
|
|
|
|
import { SummonCommand } from './summon.command';
|
2022-12-16 13:48:39 +01:00
|
|
|
|
|
|
|
@Module({
|
2022-12-17 16:58:38 +01:00
|
|
|
imports: [
|
|
|
|
DiscordModule.forFeature(),
|
|
|
|
JellyfinClientModule,
|
|
|
|
DiscordClientModule,
|
2022-12-17 21:39:52 +01:00
|
|
|
PlaybackModule,
|
2022-12-17 16:58:38 +01:00
|
|
|
],
|
2022-12-16 13:48:39 +01:00
|
|
|
controllers: [],
|
2022-12-16 16:10:16 +01:00
|
|
|
providers: [
|
|
|
|
HelpCommand,
|
|
|
|
StatusCommand,
|
|
|
|
CurrentTrackCommand,
|
|
|
|
DisconnectCommand,
|
|
|
|
PausePlaybackCommand,
|
|
|
|
SkipTrackCommand,
|
|
|
|
StopPlaybackCommand,
|
|
|
|
SummonCommand,
|
2022-12-17 19:52:32 +01:00
|
|
|
PlayItemCommand,
|
|
|
|
PreviousTrackCommand,
|
2022-12-16 16:10:16 +01:00
|
|
|
],
|
2022-12-16 13:48:39 +01:00
|
|
|
exports: [],
|
|
|
|
})
|
|
|
|
export class CommandModule {}
|