dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AuditLogModule cluster_AuditLogModule_providers cluster_AuditLogModule_exports AuditLogService AuditLogService AuditLogModule AuditLogModule AuditLogModule->AuditLogService AuditLogService AuditLogService AuditLogService->AuditLogModule

File

src/audit-log/audit-log.module.ts

Providers

Controllers

Exports

import { Module } from "@nestjs/common";
import { TypeOrmModule } from "@nestjs/typeorm";
import { AuditLogController } from "./audit-log.controller";
import { AuditLogService } from "./audit-log.service";
import { AuditLogEntity } from "./entities/audit-log.entity";

@Module({
    imports: [TypeOrmModule.forFeature([AuditLogEntity])],
    controllers: [AuditLogController],
    providers: [AuditLogService],
    exports: [AuditLogService],
})
export class AuditLogModule {}

results matching ""

    No results matching ""