Files
tonePage/apps/backend/src/notification/notification.module.ts
2025-12-12 17:25:26 +08:00

9 lines
222 B
TypeScript

import { Module } from '@nestjs/common';
import { NotificationService } from './notification.service';
@Module({
providers: [NotificationService],
exports: [NotificationService],
})
export class NotificationModule {}