streamflix-api / src /core /notification-core /notification-core.module.ts
Akshar2325
feat(core): add core service modules for db entities
b1ced28
Raw
History Blame
347 Bytes
import { Module } from '@nestjs/common';
import { PrismaService } from 'src/shared/modules/prisma/prisma.service';
import { NotificationCoreService } from './notification-core.service';
@Module({
providers: [PrismaService, NotificationCoreService],
exports: [NotificationCoreService, PrismaService],
})
export class NotificationCoreModule {}