import { Module } from '@nestjs/common'; import { ProfileController } from './profile.controller'; import { ProfileService } from './profile.service'; import { UserCoreModule } from 'src/core/user-core/user-core.module'; import { UserInterestCoreModule } from 'src/core/user-interest-core/user-interest-core.module'; import { UserAuthModule } from '../auth/auth.module'; @Module({ imports: [UserCoreModule, UserInterestCoreModule, UserAuthModule], controllers: [ProfileController], providers: [ProfileService], exports: [ProfileService], }) export class ProfileModule {}