affiliate-launch-kit / backend /src /modules /notifications /notifications.module.ts
mohmmed5787's picture
Deploying Affiliate Launch Kit - Production Ready
d44ff09 verified
Raw
History Blame Contribute Delete
245 Bytes
import { Global, Module } from '@nestjs/common';
import { NotificationsService } from './notifications.service';
@Global()
@Module({
providers: [NotificationsService],
exports: [NotificationsService],
})
export class NotificationsModule {}