dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_EdcModule cluster_EdcModule_exports cluster_EdcModule_providers EdcService EdcService EdcModule EdcModule EdcModule->EdcService EdcService EdcService EdcService->EdcModule

File

src/provider/edc_api/edc.module.ts

Providers

Exports

import { Module } from '@nestjs/common';
import { HttpModule } from '@nestjs/axios';
import { EdcService } from './edc.services';
@Module({
  imports: [HttpModule.register({
    baseURL: process.env.EDC_API_URL,
    timeout: 5000,
  })],
  controllers: [],
  providers: [EdcService],
  exports: [EdcService]

})
export class EdcModule { }

results matching ""

    No results matching ""