Files
docmost/apps/server/src/integrations/outbound/outbound.module.ts
T
2026-09-04 14:53:14 +01:00

11 lines
334 B
TypeScript

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 {}