streamflix-api / src /modules /user /profile /profile.module.ts
Akshar2325
feat(user): add profile management and enhance session tracking
405ccd5
Raw
History Blame
580 Bytes
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 {}