fix
This commit is contained in:
8
lib/features/auth/data/data.dart
Normal file
8
lib/features/auth/data/data.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
/// Export all auth data layer components
|
||||
///
|
||||
/// Contains data sources, models, and repository implementations
|
||||
library;
|
||||
|
||||
export 'datasources/auth_remote_datasource.dart';
|
||||
export 'models/models.dart';
|
||||
export 'repositories/auth_repository_impl.dart';
|
||||
9
lib/features/auth/data/models/models.dart
Normal file
9
lib/features/auth/data/models/models.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
/// Export all auth data models
|
||||
///
|
||||
/// Contains DTOs and models for authentication data transfer
|
||||
library;
|
||||
|
||||
export 'auth_response_model.dart';
|
||||
export 'login_dto.dart';
|
||||
export 'register_dto.dart';
|
||||
export 'user_model.dart';
|
||||
Reference in New Issue
Block a user