Spaces:
Runtime error
Runtime error
| 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'; | |
| () | |
| ({ | |
| imports: [TypeOrmModule.forFeature([License, User])], | |
| providers: [LicensingService], | |
| controllers: [LicensingController], | |
| exports: [LicensingService], | |
| }) | |
| export class LicensingModule {} | |