-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.module.ts
More file actions
26 lines (23 loc) · 877 Bytes
/
app.module.ts
File metadata and controls
26 lines (23 loc) · 877 Bytes
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
import * as path from 'path';
import { Module } from '@nestjs/common';
import { ConfigModule } from 'nestjs-config';
import { NotificationsModule } from './notifications/notifications.module';
import { AppController } from './app.controller';
import { MappedUsersModule } from './mapped-users/mapped-users.module';
import { TempoModule } from './tempo/tempo.module';
import { CalamariModule } from './calamari/calamari.module';
import { AggregatorService } from './aggregator/aggregator.service';
import { AggregatorModule } from './aggregator/aggregator.module';
@Module({
imports: [
ConfigModule.load(path.resolve(__dirname, 'config', '**/!(*.d).{ts,js}')),
MappedUsersModule,
TempoModule,
CalamariModule,
AggregatorModule,
NotificationsModule,
],
controllers: [AppController],
providers: [AggregatorService],
})
export class AppModule { }