Files
trouvetonprofile/src/app/usecase/authentification/send-request-password-reset.usecase.ts
2025-11-27 16:33:26 +01:00

10 lines
279 B
TypeScript

import { AuthRepository } from '@app/domain/authentification/auth.repository';
export class SendRequestPasswordResetUsecase {
constructor(private readonly authRepo: AuthRepository) {}
execute(email: string) {
return this.authRepo.sendRequestPasswordReset(email);
}
}