21 lines
611 B
Dart
21 lines
611 B
Dart
|
// This is the barrel file for the ioc_container package
|
||
|
|
||
|
// Export the main Container class
|
||
|
export 'src/container.dart';
|
||
|
|
||
|
// Export other important classes and utilities
|
||
|
export 'src/bound_method.dart';
|
||
|
export 'src/contextual_binding_builder.dart';
|
||
|
export 'src/entry_not_found_exception.dart';
|
||
|
export 'src/util.dart';
|
||
|
|
||
|
// Export any interfaces or contracts if they exist
|
||
|
// export 'src/contracts/container_contract.dart';
|
||
|
|
||
|
// Export any additional exceptions
|
||
|
|
||
|
// Export any additional utilities or helpers
|
||
|
// export 'src/helpers/parameter_resolver.dart';
|
||
|
|
||
|
// You can add more exports as needed for your package
|