mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 11:01:56 +01:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
|
import { Module } from '@nestjs/common';
|
||
|
import { DiscordModule } from '@discord-nestjs/core';
|
||
|
|
||
|
import { HelpCommand } from './help.command';
|
||
|
|
||
|
@Module({
|
||
|
imports: [DiscordModule.forFeature()],
|
||
|
controllers: [],
|
||
|
providers: [HelpCommand],
|
||
|
exports: [],
|
||
|
})
|
||
|
export class CommandModule {}
|