fix
This commit is contained in:
8
lib/features/products/data/data.dart
Normal file
8
lib/features/products/data/data.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
/// Export all products data layer components
|
||||
///
|
||||
/// Contains data sources, models, and repository implementations
|
||||
library;
|
||||
|
||||
export 'datasources/datasources.dart';
|
||||
export 'models/models.dart';
|
||||
export 'repositories/product_repository_impl.dart';
|
||||
7
lib/features/products/data/datasources/datasources.dart
Normal file
7
lib/features/products/data/datasources/datasources.dart
Normal file
@@ -0,0 +1,7 @@
|
||||
/// Export all products data sources
|
||||
///
|
||||
/// Contains local and remote data sources for products
|
||||
library;
|
||||
|
||||
export 'product_local_datasource.dart';
|
||||
export 'product_remote_datasource.dart';
|
||||
6
lib/features/products/data/models/models.dart
Normal file
6
lib/features/products/data/models/models.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
/// Export all products data models
|
||||
///
|
||||
/// Contains DTOs and models for product data transfer
|
||||
library;
|
||||
|
||||
export 'product_model.dart';
|
||||
Reference in New Issue
Block a user