discord-jellyfin-bot/src/commands/command.module.ts

13 lines
289 B
TypeScript
Raw Normal View History

2022-12-16 13:48:39 +01:00
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 {}