platform-codebase/features/landing/backend/src/notifications/notifications.module.ts
Quinn Ftw f907bde570 feat(landing): add backend service with merch submissions API
Add NestJS backend for landing page with:
- Image processing service for uploads
- Merch submissions CRUD with admin workflows
- Email notification service
- S3-compatible storage integration
- Health check endpoint

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 17:49:11 -08:00

8 lines
193 B
TypeScript

import { Module } from '@nestjs/common'
import { EmailService } from './email.service'
@Module({
providers: [EmailService],
exports: [EmailService],
})
export class NotificationsModule {}