9 lines
280 B
Dart
9 lines
280 B
Dart
|
/// A PSR-11 compatible container interface for Dart.
|
||
|
///
|
||
|
/// This library provides interfaces for dependency injection containers
|
||
|
/// following the PSR-11 Container Interface specification.
|
||
|
library container;
|
||
|
|
||
|
export 'src/container_interface.dart';
|
||
|
export 'src/exceptions.dart';
|