streamflix-api / src /core /user-interest-core /user-interest-core.module.ts
Akshar2325
feat(auth): implement multi-step user registration flow
db3d93b
Raw
History Blame
348 Bytes
import { Module } from '@nestjs/common';
import { PrismaService } from 'src/shared/modules/prisma/prisma.service';
import { UserInterestCoreService } from './user-interest-core.service';
@Module({
providers: [PrismaService, UserInterestCoreService],
exports: [UserInterestCoreService, PrismaService],
})
export class UserInterestCoreModule {}