mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 10:46:43 +02:00
NestJS notification microservice for email, push, Matrix, and webhook notifications across all ManaCore apps. Features: - Multi-channel delivery (email, push, Matrix, webhook) - Handlebars template engine with defaults - User notification preferences - BullMQ async job processing - Delivery tracking and logging - Prometheus metrics Includes @manacore/notify-client package for NestJS integration.
10 lines
304 B
TypeScript
10 lines
304 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TemplatesService } from './templates.service';
|
|
import { TemplatesController } from './templates.controller';
|
|
|
|
@Module({
|
|
providers: [TemplatesService],
|
|
controllers: [TemplatesController],
|
|
exports: [TemplatesService],
|
|
})
|
|
export class TemplatesModule {}
|