This commit is contained in:
efrilm
2025-09-18 09:31:42 +07:00
parent 2e00207343
commit 006486bc2a
14 changed files with 1080 additions and 54 deletions
@@ -31,4 +31,10 @@ abstract class IAuthRepository {
required String phoneNumber,
required String purpose,
});
Future<bool> hasToken();
Future<Either<AuthFailure, User>> currentUser();
Future<Either<AuthFailure, Unit>> logout();
}