import { Module } from '@nestjs/common'; import { ProfileSectionsController } from './profile-sections.controller'; import { ProfileSectionsService } from './profile-sections.service'; import { ProfileFieldsController } from './profile-fields.controller'; import { ProfileFieldsService } from './profile-fields.service'; import { PrismaModule } from '../prisma'; @Module({ imports: [PrismaModule], controllers: [ProfileSectionsController, ProfileFieldsController], providers: [ProfileSectionsService, ProfileFieldsService], exports: [ProfileSectionsService, ProfileFieldsService], }) export class ProfileFieldsModule {}