import { Module } from "@nestjs/common"; import { NotificationsController } from "./notifications.controller.js"; import { NotificationsService } from "./notifications.service.js"; import { ChannelDispatcherService } from "../channels/channel-dispatcher.service.js"; @Module({ controllers: [NotificationsController], providers: [NotificationsService, ChannelDispatcherService], exports: [NotificationsService], }) export class NotificationsModule {}