Convert submodule to regular directory
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* RECIPE APP MODULE SETUP
|
||||
*
|
||||
* Add import service to your recipe app backend.
|
||||
* File: backend/src/modules/import/import.module.ts
|
||||
*/
|
||||
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ImportService } from './import.service';
|
||||
|
||||
@Module({
|
||||
providers: [ImportService],
|
||||
exports: [ImportService],
|
||||
})
|
||||
export class ImportModule {}
|
||||
Reference in New Issue
Block a user