import { Module } from '@nestjs/common'; import { InvestmentsController } from './investments.controller'; import { InvestmentsService } from './investments.service'; @Module({ controllers: [InvestmentsController], providers: [InvestmentsService], exports: [InvestmentsService], }) export class InvestmentsModule {}