dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PartnerModule cluster_PartnerModule_exports cluster_PartnerModule_providers PartnerService PartnerService PartnerModule PartnerModule PartnerModule->PartnerService PartnerService PartnerService PartnerService->PartnerModule

File

src/modules/partner/partner.module.ts

Providers

Controllers

Exports

import { HttpModule, Module, forwardRef } from '@nestjs/common';
import { UserModule } from 'modules/user/user.module'
import { TypeOrmModule } from '@nestjs/typeorm';
import { PartnerRepository } from 'modules/partner/repositories';
import { PartnerService } from 'modules/partner/services';
import { PartnerController } from 'modules/partner/controllers';

@Module({
    imports: [
        HttpModule,
        forwardRef(() => UserModule),
        TypeOrmModule.forFeature([PartnerRepository])
    ],
    controllers: [PartnerController],
    exports: [PartnerService],
    providers: [PartnerService],
})
export class PartnerModule {}

result-matching ""

    No results matching ""