-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannel-management.module.ts
34 lines (33 loc) · 1.69 KB
/
channel-management.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Module } from '@nestjs/common';
import { CqrsModule } from '@nestjs/cqrs';
import { MongoModule } from 'nest-mongodb';
import CategoriesController from './application/categories.controller';
import ChannelsController from './application/channels.controller';
import CreateChannelHandler from './application/commands/create-channel/create-channel.handler';
import CreateTierHandler from './application/commands/create-tier/create-tier.handler';
import PublishChannelHandler from './application/commands/publish-channel/publish-channel.handler';
import UpdateChannelBrandingHandler from './application/commands/update-channel-branding/update-channel-branding.handler';
import FindOneChannelHandler from './application/queries/find-one-channel/find-one-channel.handler';
import ListCategoriesHandler from './application/queries/list-categories/list-categories.handler';
import ListChannelHandler from './application/queries/list-channels/list-channels.handler';
import TiersController from './application/tiers.controller';
import CategoryQuery from './application/queries/category.query';
import ChannelQuery from './application/queries/channel.query';
import ChannelRepository from './infrastructure/repositories/channel.repository';
@Module({
imports: [CqrsModule, MongoModule.forFeature(['channels', 'tiers', 'categories'])],
controllers: [ChannelsController, CategoriesController, TiersController],
providers: [
CreateChannelHandler,
CreateTierHandler,
PublishChannelHandler,
UpdateChannelBrandingHandler,
FindOneChannelHandler,
ListCategoriesHandler,
ListChannelHandler,
ChannelRepository,
ChannelQuery,
CategoryQuery,
],
})
export default class ChannelManagementModule {}