11 lines
269 B
Dart
11 lines
269 B
Dart
/// Infrastructure layer entry point.
|
|
///
|
|
/// Concrete adapters live here and depend inward on application/domain
|
|
/// contracts.
|
|
library;
|
|
|
|
export 'local/local.dart';
|
|
export 'remote/remote.dart';
|
|
export 'security/security.dart';
|
|
export 'watch_bridge/watch_bridge.dart';
|