mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 10:52:53 +00:00
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { TypeOrmModule } from "@nestjs/typeorm";
|
|
import { AuditLogCommand } from "@tria-plc/auditlog";
|
|
|
|
import { AuditController } from "./audit.controller";
|
|
import { AuditService } from "./audit.service";
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([AuditLogCommand])],
|
|
controllers: [AuditController],
|
|
providers: [AuditService],
|
|
})
|
|
export class AuditModule {}
|