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>
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { Module } from '@nestjs/common'
|
|
import { EmailService } from './email.service'
|
|
|
|
@Module({
|
|
providers: [EmailService],
|
|
exports: [EmailService],
|
|
})
|
|
export class NotificationsModule {}
|