放弃短信验证了

This commit is contained in:
2025-05-07 17:21:49 +08:00
parent 8039a3571d
commit 9570fb4524
7 changed files with 369 additions and 4 deletions

View File

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