Initial commit: ERP system with advance verification fixes
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Purchase } from './purchase.entity';
|
||||
import { PurchaseItem } from './purchase-item.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Purchase, PurchaseItem])],
|
||||
exports: [TypeOrmModule],
|
||||
})
|
||||
export class PurchasesModule {}
|
||||
Reference in New Issue
Block a user