mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 11:01:56 +01:00
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
|
import { DiscordModule } from '@discord-nestjs/core';
|
||
|
import { Module } from '@nestjs/common';
|
||
|
import { DiscordClientModule } from '../clients/discord/discord.module';
|
||
|
import { UpdatesService } from './updates.service';
|
||
|
|
||
|
@Module({
|
||
|
imports: [DiscordModule.forFeature(), DiscordClientModule],
|
||
|
providers: [UpdatesService],
|
||
|
controllers: [],
|
||
|
exports: [],
|
||
|
})
|
||
|
export class UpdatesModule {}
|