|
|
@@ -1,9 +1,10 @@
|
|
|
import { Module } from '@nestjs/common';
|
|
|
import { typeOrmModuleOptions } from './config/db-config';
|
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
|
+import { ManufacturerModule } from './manufacturer/manufacturer.module';
|
|
|
|
|
|
@Module({
|
|
|
- imports: [TypeOrmModule.forRoot(typeOrmModuleOptions)],
|
|
|
+ imports: [TypeOrmModule.forRoot(typeOrmModuleOptions), ManufacturerModule],
|
|
|
controllers: [],
|
|
|
providers: [],
|
|
|
})
|