feat(ee): SIEM (#2471)

This commit is contained in:
Philip Okugbe
2026-09-04 14:53:14 +01:00
committed by GitHub
parent 5b85464561
commit 0d69d48c52
43 changed files with 2612 additions and 122 deletions
@@ -0,0 +1,10 @@
import { Global, Module } from '@nestjs/common';
import { OutboundAgentFactory } from './outbound-agent.factory';
import { OutboundUrlGuard } from './outbound-url.guard';
@Global()
@Module({
providers: [OutboundUrlGuard, OutboundAgentFactory],
exports: [OutboundUrlGuard, OutboundAgentFactory],
})
export class OutboundModule {}