File size: 245 Bytes
d44ff09
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { Global, Module } from '@nestjs/common';
import { NotificationsService } from './notifications.service';

@Global()
@Module({
  providers: [NotificationsService],
  exports: [NotificationsService],
})
export class NotificationsModule {}