Files
ads-saas/src/notifications/notification.module.ts
2026-03-30 17:04:27 +03:00

10 lines
249 B
TypeScript

import { Module, Global } from '@nestjs/common';
import { NotificationService } from './services/notification.service';
@Global()
@Module({
providers: [NotificationService],
exports: [NotificationService],
})
export class NotificationModule {}