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