This commit is contained in:
2025-11-15 08:41:35 +03:30
parent 15c0c508b9
commit 0f1407c748
23 changed files with 714 additions and 177 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Module } from '@nestjs/common';
import { FoodService } from './providers/food.service';
import { FoodController } from './controllers/food.controller';
import { CategorysController } from './controllers/categorys.controller';
import { CategoryService } from './providers/category.service';
@Module({
controllers: [FoodController, CategorysController],
providers: [FoodService, CategoryService],
})
export class FoodModule {}