fix
This commit is contained in:
8
lib/features/categories/data/data.dart
Normal file
8
lib/features/categories/data/data.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
/// Export all categories data layer components
|
||||
///
|
||||
/// Contains data sources, models, and repository implementations
|
||||
library;
|
||||
|
||||
export 'datasources/datasources.dart';
|
||||
export 'models/models.dart';
|
||||
export 'repositories/category_repository_impl.dart';
|
||||
@@ -0,0 +1,6 @@
|
||||
/// Export all categories data sources
|
||||
///
|
||||
/// Contains local data sources for categories
|
||||
library;
|
||||
|
||||
export 'category_local_datasource.dart';
|
||||
6
lib/features/categories/data/models/models.dart
Normal file
6
lib/features/categories/data/models/models.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
/// Export all categories data models
|
||||
///
|
||||
/// Contains DTOs and models for category data transfer
|
||||
library;
|
||||
|
||||
export 'category_model.dart';
|
||||
Reference in New Issue
Block a user