All checks were successful
ci/woodpecker/push/ci Pipeline was successful
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
15 lines
562 B
TypeScript
15 lines
562 B
TypeScript
import { forwardRef, Module } from '@nestjs/common';
|
|
import { AdminGuard } from '../admin/admin.guard.js';
|
|
import { ChatModule } from '../chat/chat.module.js';
|
|
import { CommandsModule } from '../commands/commands.module.js';
|
|
import { ReloadController } from './reload.controller.js';
|
|
import { ReloadService } from './reload.service.js';
|
|
|
|
@Module({
|
|
imports: [forwardRef(() => CommandsModule), forwardRef(() => ChatModule)],
|
|
controllers: [ReloadController],
|
|
providers: [ReloadService, AdminGuard],
|
|
exports: [ReloadService],
|
|
})
|
|
export class ReloadModule {}
|