Skip to content

Commit 3c2f7e2

Browse files
fix: import app config module in notifications module
1 parent 55b1f95 commit 3c2f7e2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/backend/src/notifications/notifications.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { Module } from '@nestjs/common';
2+
import { AppConfigModule } from '../config/app-config.module';
23
import { NotificationsService } from './notifications.service';
34

45
@Module({
6+
imports: [AppConfigModule],
57
providers: [NotificationsService],
68
exports: [NotificationsService],
79
})

0 commit comments

Comments
 (0)