16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
/**
|
|
* 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 {}
|