Convert submodule to regular directory

This commit is contained in:
Nils-Johan Gynther
2026-04-11 16:46:48 +02:00
parent 343416a28d
commit 4189f94e0e
13 changed files with 1781 additions and 1 deletions
@@ -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 {}