import { Module } from '@nestjs/common'; import { InvestmentPlanningController } from './investment-planning.controller'; import { InvestmentPlanningService } from './investment-planning.service'; @Module({ controllers: [InvestmentPlanningController], providers: [InvestmentPlanningService], }) export class InvestmentPlanningModule {}