feat(ADM-018): completed feature

This commit is contained in:
chattie
2026-08-17 22:23:10 +02:00
parent cf1c69fc8b
commit d595b4871f
871 changed files with 47411 additions and 281 deletions

View File

@@ -0,0 +1,10 @@
/** Public API of the notifications module. */
export {
registerNotificationsRoutes,
type NotificationsRoutesDeps,
} from './api/notifications.routes.js';
export { NotificationsService } from './application/notifications-service.js';
export { LoggingEmailProvider } from './infrastructure/log-email-provider.js';
export { PgNotificationsRepository } from './infrastructure/pg-notifications-repository.js';
export type { NotificationsRepository, EmailProvider } from './domain/ports.js';
export type { EmailMessage, EmailTemplate } from './domain/notification.js';