mirror of
https://github.com/docmost/docmost.git
synced 2026-09-11 07:56:54 +08:00
11 lines
334 B
TypeScript
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 {}
|