We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abfc0f4 + e893d1d commit ad5918dCopy full SHA for ad5918d
1 file changed
microservices/config-service/src/modules/audit/audit.module.ts
@@ -2,9 +2,11 @@ import { Module } from '@nestjs/common';
2
import { TypeOrmModule } from '@nestjs/typeorm';
3
import { AuditLog } from '../../entities';
4
import { AuditLogService } from './audit-log.service';
5
+import { AuditLogController } from './audit-log.controller';
6
7
@Module({
8
imports: [TypeOrmModule.forFeature([AuditLog])],
9
+ controllers: [AuditLogController],
10
providers: [AuditLogService],
11
exports: [AuditLogService],
12
})
0 commit comments