mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 21:20:57 +00:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { Module, Global } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { IamGuard } from './iam-adapter';
|
|
|
|
@Global()
|
|
@Module({
|
|
imports: [HttpModule.register({ timeout: 5000 })],
|
|
providers: [IamGuard],
|
|
exports: [IamGuard],
|
|
})
|
|
export class IamModule {}
|