Files
Edu/services/msg/src/notifications/notifications.module.ts
SpecialX 7b7abbb309 feat(msg): 完整实现 msg 消息服务
包含 channels/preferences/templates/grpc/kafka/outbox/push/redis 等完整实现
2026-07-10 19:09:52 +08:00

12 lines
457 B
TypeScript

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 {}