oa_based/src/modules/materials_inventory/materials_inventory.module.ts

13 lines
529 B
TypeScript
Raw Normal View History

2024-02-29 10:32:37 +08:00
import { Module } from '@nestjs/common';
import { MaterialsInventoryController } from './materials_inventory.controller';
import { MaterialsInventoryService } from './materials_inventory.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { MeterialsInventoryEntity } from './materials_inventory.entity';
@Module({
imports: [TypeOrmModule.forFeature([MeterialsInventoryEntity])],
controllers: [MaterialsInventoryController],
providers: [MaterialsInventoryService]
})
export class MaterialsInventoryModule {}