refactor( iam ): remove local auth service delegate OTP and password reset to IAM

This commit is contained in:
Abubeker Yasin
2026-06-06 10:23:53 +03:00
parent 023522c3fb
commit 254d2a171c
5 changed files with 40 additions and 141 deletions

View File

@@ -1,10 +1,9 @@
import { Module } from '@nestjs/common';
import { AuthController } from './auth.controller';
import { AuthService } from './auth.service';
import { PassengerAuthService } from './passenger-auth.service';
@Module({
controllers: [AuthController],
providers: [AuthService, PassengerAuthService],
providers: [PassengerAuthService],
})
export class AuthModule {}