dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ConfirmCodeModule cluster_ConfirmCodeModule_imports cluster_ConfirmCodeModule_exports cluster_ConfirmCodeModule_providers ConfirmCodeEntity ConfirmCodeEntity ConfirmCodeModule ConfirmCodeModule ConfirmCodeEntity->ConfirmCodeModule ConfirmCodeService ConfirmCodeService ConfirmCodeModule->ConfirmCodeService ConfirmCodeService ConfirmCodeService ConfirmCodeService->ConfirmCodeModule

File

apps/api/src/user/confirm-code.module.ts

import { Module } from '@nestjs/common'
import { ConfirmCodeService } from './confirm-code.service'
import { TypeOrmModule } from '@nestjs/typeorm'
import { ConfirmCodeEntity } from '../entities/confirm-code.entity'
import { UserEntity } from '../entities/user.entity'

@Module({
  imports: [
    TypeOrmModule.forFeature([UserEntity, ConfirmCodeEntity]),
    ConfirmCodeEntity
  ],
  controllers: [],
  providers: [ConfirmCodeService],
  exports: [ConfirmCodeService]
})
export class ConfirmCodeModule {}

results matching ""

    No results matching ""