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';
|
2024-03-04 14:17:53 +08:00
|
|
|
import { MaterialsInventoryEntity } from './materials_inventory.entity';
|
|
|
|
import { StorageModule } from '../tools/storage/storage.module';
|
2024-02-29 10:32:37 +08:00
|
|
|
|
|
|
|
@Module({
|
2024-03-04 14:17:53 +08:00
|
|
|
imports: [TypeOrmModule.forFeature([MaterialsInventoryEntity]), StorageModule],
|
2024-02-29 10:32:37 +08:00
|
|
|
controllers: [MaterialsInventoryController],
|
|
|
|
providers: [MaterialsInventoryService]
|
|
|
|
})
|
|
|
|
export class MaterialsInventoryModule {}
|