import { Module } from "@nestjs/common"; import { SettingsModule } from "../settings/settings.module"; import { NotificationScheduleService } from "./notification-schedule.service"; /** * Just the cadence registry, split out for the same reason as * `NotificationLogModule`: both `NotificationsModule` and `RenewalsModule` * need it, and neither may import the other. */ @Module({ imports: [SettingsModule], providers: [NotificationScheduleService], exports: [NotificationScheduleService], }) export class NotificationScheduleModule {}