affiliate-launch-kit / backend /src /modules /licensing /licensing.module.ts
mohmmed5787's picture
Deploying Affiliate Launch Kit - Production Ready
d44ff09 verified
Raw
History Blame Contribute Delete
487 Bytes
import { Global, Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { License, User } from '../../database/entities';
import { LicensingService } from './licensing.service';
import { LicensingController } from './licensing.controller';
@Global()
@Module({
imports: [TypeOrmModule.forFeature([License, User])],
providers: [LicensingService],
controllers: [LicensingController],
exports: [LicensingService],
})
export class LicensingModule {}