2024-12-24 03:36:32 +00:00
|
|
|
// 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';
|
2024-12-24 05:35:51 +00:00
|
|
|
export 'src/rewindable_generator.dart';
|
2024-12-24 03:36:32 +00:00
|
|
|
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
|