Skip to content

Commit 6fe0152

Browse files
committed
fix: import TerminusModule in MatrixModule for HealthIndicatorService DI
1 parent 8fdcafd commit 6fe0152

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/matrix/matrix.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Module, forwardRef } from '@nestjs/common';
22
import { ConfigModule } from '@nestjs/config';
33
import { ScheduleModule } from '@nestjs/schedule';
4+
import { TerminusModule } from '@nestjs/terminus';
45
import { MatrixController } from './matrix.controller';
56
import { MatrixAppServiceController } from './controllers/matrix-appservice.controller';
67
import { matrixConfig } from './config/matrix.config';
@@ -35,6 +36,7 @@ configureMatrixLogging();
3536
@Module({
3637
imports: [
3738
ConfigModule.forFeature(matrixConfig),
39+
TerminusModule,
3840
ScheduleModule.forRoot(),
3941
forwardRef(() => UserModule),
4042
TenantModule,

0 commit comments

Comments
 (0)