Initial commit from saas-meta
This commit is contained in:
9
src/notifications/notification.module.ts
Normal file
9
src/notifications/notification.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Module, Global } from '@nestjs/common';
|
||||
import { NotificationService } from './services/notification.service';
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
providers: [NotificationService],
|
||||
exports: [NotificationService],
|
||||
})
|
||||
export class NotificationModule {}
|
||||
Reference in New Issue
Block a user