check phone repo

This commit is contained in:
efrilm
2025-09-18 05:51:17 +07:00
parent c072e4c168
commit c3263edb89
14 changed files with 1324 additions and 3 deletions
@@ -0,0 +1,7 @@
part of '../auth.dart';
abstract class IAuthRepository {
Future<Either<AuthFailure, CheckPhone>> checkPhone({
required String phoneNumber,
});
}