Files
trouvetonprofile/src/app/application/authentification/send-verification-email.usecase.ts
styve Lioumba b90e78e1b7
All checks were successful
Build Check / build (push) Successful in 3m8s
Build Check / build (pull_request) Successful in 3m19s
refacto : restructuration du projet
2025-12-23 09:06:41 +01:00

10 lines
273 B
TypeScript

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