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 { Quotation } from './quotation.entity';
|
||||
import { QuotationItem } from './quotation-item.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Quotation, QuotationItem])],
|
||||
exports: [TypeOrmModule],
|
||||
})
|
||||
export class QuotationsModule {}
|
||||
Reference in New Issue
Block a user