Files
tonePage/tone-page-server/src/notification/notification.module.ts
2025-05-07 17:21:49 +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 {}