feat: auth

This commit is contained in:
efrilm
2025-08-16 17:48:49 +07:00
parent 255b10d5a9
commit edf067369d
9 changed files with 1006 additions and 79 deletions
@@ -5,4 +5,6 @@ abstract class IAuthRepository {
required String email,
required String password,
});
Future<bool> hasToken();
Future<Either<AuthFailure, User>> currentUser();
}