dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AuthApiModule cluster_AuthApiModule_providers cluster_AuthApiModule_exports AuthApiService AuthApiService AuthApiModule AuthApiModule AuthApiModule->AuthApiService AuthApiService AuthApiService AuthApiService->AuthApiModule

File

src/outbound/auth-api/auth-api.module.ts

Providers

Controllers

Exports

import { HttpModule } from '@nestjs/axios';
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { AuthApiController } from './auth-api.controller';
import { AuthApiService } from './auth-api.service';

@Module({
  imports: [ConfigModule.forRoot(), HttpModule.register({})],
  controllers: [AuthApiController],
  providers: [AuthApiService],
  exports: [AuthApiService],
})
export class AuthApiModule {}

results matching ""

    No results matching ""