Initial commit
This commit is contained in:
19
src/modules/channel-management/channel-management.module.ts
Normal file
19
src/modules/channel-management/channel-management.module.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { ChannelManagementService } from './channel-management.service';
|
||||
import { ChannelManagementController } from './channel-management.controller';
|
||||
import { Channel } from '../../entities/channel.entity';
|
||||
import { NotificationsModule } from '../notifications/notifications.module';
|
||||
import { ScheduleModule } from '@nestjs/schedule';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([Channel]),
|
||||
NotificationsModule,
|
||||
ScheduleModule,
|
||||
],
|
||||
controllers: [ChannelManagementController],
|
||||
providers: [ChannelManagementService],
|
||||
exports: [ChannelManagementService],
|
||||
})
|
||||
export class ChannelManagementModule {}
|
||||
Reference in New Issue
Block a user