import { Module } from "@nestjs/common"; import { NotificationLogService } from "./notification-log.service"; /** * Just the log writer, so a feature that sends mail can record it without * importing `NotificationsModule` (which carries the four bulk-job pipelines * and their controller). Imported by `NotificationsModule` and * `RenewalsModule`. */ @Module({ providers: [NotificationLogService], exports: [NotificationLogService], }) export class NotificationLogModule {}