Files
edr-platform/apps/edr-freight-api/src/modules/notifications/notifications.module.ts
Michael Abebe 1c5ee19388 chore: fmt
2026-05-12 16:50:18 +03:00

10 lines
228 B
TypeScript

import { Module } from "@nestjs/common";
import { NotificationsService } from "./notifications.service";
@Module({
providers: [NotificationsService],
exports: [NotificationsService],
})
export class NotificationsModule {}