9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { NotificationService } from './notification.service';
|
|
|
|
@Module({
|
|
providers: [NotificationService],
|
|
exports: [NotificationService],
|
|
})
|
|
export class NotificationModule {}
|