Files
minhthu/lib/features/auth/auth.dart
2025-10-28 00:09:46 +07:00

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';