import { Module } from '@nestjs/common'; import { MealPlanController } from './meal-plan.controller'; import { MealPlanService } from './meal-plan.service'; import { PrismaModule } from '../prisma/prisma.module'; @Module({ controllers: [MealPlanController], providers: [MealPlanService], imports: [PrismaModule], }) export class MealPlanModule {}