#first commit

This commit is contained in:
cc
2026-01-11 19:42:22 +08:00
commit f70d6cace6
167 changed files with 6699 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import '../models/user_model.dart';
abstract class AuthHttpDataSource {
Future<UserModel> login(String username, String password, int sourceType);
}