feat(v2.7): 增加通知与评论协作模块

This commit is contained in:
2026-07-08 16:13:33 +08:00
parent ad36ffda17
commit 95523cd4a1
13 changed files with 586 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { AuditService } from './audit/audit.service';
import { RbacService } from './rbac/rbac.service';
@Module({
providers: [AuditService, RbacService],
exports: [AuditService, RbacService],
})
export class CommonDomainModule {}