- Complete monorepo structure with pnpm workspaces - Prisma database schema with 20+ entities - NestJS API with 9 core modules - BullMQ orchestration worker - AWS and Azure provider adapters - Docker Compose infrastructure - Complete documentation
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuditService } from './audit.service';
|
|
|
|
@Module({
|
|
providers: [AuditService],
|
|
exports: [AuditService],
|
|
})
|
|
export class AuditModule {}
|