16 lines
388 B
Dart
16 lines
388 B
Dart
/// Home/Cart Feature
|
|
///
|
|
/// Complete home and shopping cart feature following clean architecture.
|
|
/// Includes cart management, product selection, and checkout operations.
|
|
///
|
|
/// Usage:
|
|
/// ```dart
|
|
/// import 'package:retail/features/home/home.dart';
|
|
/// ```
|
|
library;
|
|
|
|
// Export all layers
|
|
export 'data/data.dart';
|
|
export 'domain/domain.dart';
|
|
export 'presentation/presentation.dart';
|