16 lines
417 B
Dart
16 lines
417 B
Dart
/// Barrel file for auth feature exports
|
|
///
|
|
/// Main entry point for the authentication feature
|
|
|
|
// Dependency injection
|
|
export 'di/auth_dependency_injection.dart';
|
|
|
|
// Domain layer (public interface)
|
|
export 'domain/domain.dart';
|
|
|
|
// Presentation layer (UI components)
|
|
export 'presentation/presentation.dart';
|
|
|
|
// Data layer (usually not exported publicly, but included for completeness)
|
|
// export 'data/data.dart';
|