mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 08:32:54 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import { Module } from "@nestjs/common";
|
|
|
|
import { NotificationsService } from "./notifications.service";
|
|
|
|
@Module({
|
|
providers: [NotificationsService],
|
|
exports: [NotificationsService],
|
|
})
|
|
export class NotificationsModule {}
|