Skip to content

Commit

Permalink
fix: better encapsulation and reducing coupling between modules
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-rocket committed Oct 11, 2024
1 parent b7fa479 commit f96b6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/api-call-log/api-call-log.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ import { TypeOrmApiCallLogRepository } from './repository/type-orm-api-call-log.
imports: [TypeOrmModule.forFeature([ApiCallLog]), MikroOrmModule.forFeature([ApiCallLog]), RolePermissionModule],
controllers: [ApiCallLogController],
providers: [ApiCallLogService, TypeOrmApiCallLogRepository],
exports: [TypeOrmModule, MikroOrmModule, ApiCallLogService, TypeOrmApiCallLogRepository]
exports: [ApiCallLogService]
})
export class ApiCallLogModule {}

0 comments on commit f96b6f7

Please sign in to comment.