16 lines
372 B
Dart
16 lines
372 B
Dart
/// Products Feature
|
|
///
|
|
/// Complete products feature following clean architecture.
|
|
/// Includes product listing, search, filtering, and management.
|
|
///
|
|
/// Usage:
|
|
/// ```dart
|
|
/// import 'package:retail/features/products/products.dart';
|
|
/// ```
|
|
library;
|
|
|
|
// Export all layers
|
|
export 'data/data.dart';
|
|
export 'domain/domain.dart';
|
|
export 'presentation/presentation.dart';
|